diff --git a/src/api/configz.js b/src/api/configz.js
index 89cdcd8d..d27809e8 100644
--- a/src/api/configz.js
+++ b/src/api/configz.js
@@ -12,7 +12,7 @@ import Cookies from 'vue-cookies'
// export const BATCH_IMPORT_SCORE = process.env.VUE_APP_BASE_API + '/admin/offcourse/batchImportScore'
axios.defaults.withCredentials = true;
const http = axios.create({
- baseURL: '/report',
+ baseURL: '/',
timeout: 1000 * 15,
// headers: { "Content-Type": "multipart/form-data" },
headers: {"Content-Type": "application/json"},
diff --git a/src/api/indexOvervoew.js b/src/api/indexOvervoew.js
index f73cd516..cc4fa764 100644
--- a/src/api/indexOvervoew.js
+++ b/src/api/indexOvervoew.js
@@ -4,32 +4,48 @@ import https from './confign'
// export const boeuCaseExport = (obj,options) => http.get('/boeu/case/export', { params: obj },options)
//概览页面考试列表请求接口
-export const boeuExamPageList = (obj) => http.post('/boeu/exam/pageList', obj)
+export const boeuExamPageList = (obj) => http.post('/report/boeu/exam/pageList', obj)
//概览页面案例列表请求接口
-export const boeuCasePageList = (obj) => http.post('/boeu/case/pageList', obj)
+export const boeuCasePageList = (obj) => http.post('/report/boeu/case/pageList', obj)
// 请求组织接口
export const userGetUserOrg = (obj) => https.get(`/organization/all/tree`,obj)
// 请求所属组织接口
-export const userInfo = (obj) => https.post('/user/info', obj)
+export const userInfo = (obj) => https.post('/report/user/info', obj)
// 课程列表接口
-export const boeuCoursePageList = (obj) => http.post('/boeu/course/pageList', obj)
+export const boeuCoursePageList = (obj) => http.post('/report/boeu/course/pageList', obj)
// 授课列表
-export const boeuTeachingPageList = (obj) => http.post('/boeu/teaching/pageList', obj)
+export const boeuTeachingPageList = (obj) => http.post('/report/boeu/teaching/pageList', obj)
// 学习路径图页面
-export const boeuRoterPageList = (obj) => http.post('/boeu/router/pageList', obj)
+export const boeuRoterPageList = (obj) => http.post('/report/boeu/router/pageList', obj)
// 项目列表
-export const boeuProjectPageList = (obj) => http.post('/boeu/project/pageList', obj)
+export const boeuProjectPageList = (obj) => http.post('/report/boeu/project/pageList', obj)
// 学习数据列表
-export const boeuStudyDataPageList = (obj) => http.post('/boeu/studyData/pageList', obj)
+export const boeuStudyDataPageList = (obj) => http.post('/report/boeu/studyData/pageList', obj)
// 考试列表分页
-export const boeuExamPageListV2 = (obj) => http.post('/boeu/exam/pageList/v2', obj )
+export const boeuExamPageListV2 = (obj) => http.post('/report/boeu/exam/pageList/v2', obj )
// 概览页面 tab头数据
-export const boeuAllTotal = (obj) => http.get('/boeu/all/total', obj)
+export const boeuAllTotal = (obj) => http.get('/report/boeu/all/total', obj)
// 路径图列表
-export const boeuRouterPlatePageList = (obj) => http.post('/boeu/routerPlate/pageList', obj)
+export const boeuRouterPlatePageList = (obj) => http.post('/report/boeu/routerPlate/pageList', obj)
// 案例列表
-export const boeuCasePlatePageList = (obj) => http.post('/boeu/case/pageList', obj)
-
+export const boeuCasePlatePageList = (obj) => http.post('/report/boeu/case/pageList', obj);
+//=============版本2=======================
+// 项目列表
+export const projectPageList = (obj) => http.post('/reportsnake/report/getProjectReportPage', obj);
+//路径图列表
+export const routerPageList = (obj) => http.post('/reportsnake/report/getRouterReportPage', obj);
+//面授列表
+export const facePageList = (obj) => http.post('/reportsnake/report/getFaceReportPage', obj);
+//在线课程列表
+export const coursePageList = (obj) => http.post('/reportsnake/report/getCourseReportPage', obj);
+//考试列表
+export const examPageList = (obj) => http.post('/reportsnake/report/getExamReportPage', obj);
+//案例列表
+export const casePageList = (obj) => http.post('/reportsnake/report/getCaseReportPage', obj);
+//专注力列表
+export const professionalPageList = (obj) => http.post('/reportsnake/report/getProfessionalReportPage', obj);
+//所有模块总数
+export const reportAllTotal = (obj) => http.post('/reportsnake/report/getReportAllTotal', obj);
// 专业力列表
export const boeuGrowthPlatePageList = (obj) => http.post('/boeu/grow/pageList', obj)
\ No newline at end of file
diff --git a/src/components/NavLeft.vue b/src/components/NavLeft.vue
index aa4fe5c2..cacc44af 100644
--- a/src/components/NavLeft.vue
+++ b/src/components/NavLeft.vue
@@ -633,7 +633,7 @@
key="sub17"
v-if="
checkMenu(
- 'operational,learningpathmap,reportproject,curriculum,caseess,reportarticle,questionsandanswers,reportexamination,overvoew,employeelearning'
+ 'operational,learningpathmap,reportproject,curriculum,caseess,reportarticle,questionsandanswers,reportexamination,overvoew,employeelearning,overvoewnew'
)
"
>
@@ -747,7 +747,7 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 此处数据展示全部单层项目数量,列表展示条数与此处数量可能存在差异
+
+ {{ item.text }} ({{ item.num }})
+
+
{{ item.text }} ({{ item.num }})
+
+
+
+
+
+

+
+
全部导出
+
+
+
+

+
+
导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/report/org.json b/src/views/report/org.json
new file mode 100644
index 00000000..3de47c00
--- /dev/null
+++ b/src/views/report/org.json
@@ -0,0 +1,51158 @@
+{
+ "data":{
+ "result": {
+ "treeNodeList": [],
+ "orgTreeList": [
+ {
+ "organizationId": "1811640937932288000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华灿",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037047586816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方科技集团股份有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646353811243008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "其他类业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356244518834176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOETHK",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356883604934656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京京东方技术开发有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356095436492800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356310507819008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356329826783232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356737148227584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357091327840256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IP管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357529133486080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646558140956672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "\"N\"业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1122963061750104064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中联超清(北京)科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124420783381151744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧政务BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124425466204127232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "政务中心Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425467907014656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "指挥中心Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425507325083648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124420785750933504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124425474412380160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425482712907776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌与市场Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425492326252544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共服务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124430940840394752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124420786824675328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧交通BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124425470478123008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "轨道公交Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425483530797056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425493064450048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机场Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124420787135053824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视觉艺术BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124425487943204864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字展陈Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425492158480384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "文体汇演Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425492443693056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425496637997056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "8K Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124425500849078272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "户外媒体Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124430941205299200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124430945110196224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保客服Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1124430945194082304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1768573768038518786",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东方聚智(北京)科技创新有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1768573772828413953",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新业务拓展战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573777546969089",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京/青岛科创中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573782324305921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "宁波科创中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573786984189954",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥科创中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573791941820417",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台发展与运营管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573796635344897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573801291022338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768573806030536705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "深圳科创中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244155308457985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厦门科创中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244193745051649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品与技术平台中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356023512567808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科技服务业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810858709400825857",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859809533325314",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程建设部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859824926392321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "规划设计部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810858722118070273",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生命科技产业园",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859607971737601",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产业服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859621045432321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "载体服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859636086206466",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "政务服务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810858793412734978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "云服务项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859648929165313",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859664339038209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859686342422530",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营服务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810858806167678978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "UBP园区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859696781979649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859710887424002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产业发展部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810858821413974017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859723633979393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859737710014466",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859745314336770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略客户部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859756743815170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859783008497666",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销托管部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810858837205549057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859795134164994",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356190148071424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划与数字化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1810859525587333121",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909174757199314946",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355978776121344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C3C4项目组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355996861960192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859768772964353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356455660097536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "UCP园区企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357423193755648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数智服务BU企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356001249202176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数智服务BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1830881326467891202",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356008316604416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京南区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356111144161280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "亦庄项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356708870230016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术研发大楼项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356797923692544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核心能力项目",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356225334087680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京北区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356206979813376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356272297709568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绿植项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356659918508032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北务项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356680327991296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "秩序维护部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357088727371776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357147632177152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "荧屏里项目",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356279914565632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区域",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984442626048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "高创项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356099911815168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "胜浦项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356549360848896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356978249404416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357501115535360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院项目",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356296075218944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356656915386368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程与能源管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356675143831552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空间数智环安部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357375957504000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场拓展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357385717649408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南区域",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980898439168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356004680142848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356097948880896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356110523404288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356167263948800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "昆明项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356799114874880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17项目",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356085156253696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859837979029506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资产及档案管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1810859850192908289",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成渝创新平台财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037185998848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空间数智财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356055796125696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "松彩/苏科服财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088138403840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "英赫/置业财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356123290865664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "UCP园区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859576216711170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "天津项目部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356034082213888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356426341912576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356459460136960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356865749782528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "园区物业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356869621125120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州UCP项目部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357007919910912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "松彩创新环安部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357305442865152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医疗物业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357524121292800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356207294386176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都创新平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1909174746449313794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355981997346816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台发展与合作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356335405207552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356515772862464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357472506187776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356348101365760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356840214859776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康TS项目",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356920263151616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆创新平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859558617362434",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356025752326144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台发展与合作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357070570229760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357351777341440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357033832321024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方置业",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355996912291840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356020031295488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356147617828864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356166076960768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "规划建设部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356342736850944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "租售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356399489978368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人力资源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356521829437440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357377312264192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新空间BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1810859591140081665",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356083835047936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356785856679936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357022952296448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357148680753152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务发展部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357428352749568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成本部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357504466784256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356051379523584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新空间BU人力资源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356200147292160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数智服务BU人力资源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227569651712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "UCP园区人力资源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356281567121408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356206220644352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京中祥英科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428362017472512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "深圳销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1740625860664401922",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据智能BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428398805712896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356469585186816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1740625872827912193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872609728866258945",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "半导体智造BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1872610235592654850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发一部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610268815753218",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发二部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1872609860437381121",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示智造BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1872610288071794689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610306509926402",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品二部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610367247716354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品一部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1872609929504911362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用智造BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1872609965236207618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610178021691393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610345923821570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356011185508352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356077090607104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356166571888640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "云服务BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1740625868721733633",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1740625880750895105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧厂务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355979224911872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356312093265920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356732698071040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357024671961088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售二中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356789195345920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357053793013760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州销售部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357077511802880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售一中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357299289821184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售三中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1872609948631019521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1872610002720718850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都销售部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356292367454208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京京东方能源科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1090293568133660672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信息技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130583518478336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458012423073794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西北区域中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458016239882242",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南区域中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458019863769089",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北区域中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458023454101505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绿色能源方案交付中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356029556559872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微网技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356507950485504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绿电技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356834632241152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能运维部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1742458028235608066",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区域中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458031838515201",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "节能技术交付部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458035407814658",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华南区域中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458039031746561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略客户开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458042554961921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "部品采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1742458046120120322",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "证券事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1774713147240902657",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005380591616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "零碳方案中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356173840617472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356220988788736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356399661944832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资与资产管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356441764368384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356748615454720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356804697493504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356907185311744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357500213760000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌推广部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357559760293888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术应用研究院",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "998650637040222208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "能源托管部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356323837317120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京视延科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356494453215232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356579610169344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1112791074935406592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1112791079213596672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1112791087933554688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "芯片1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1112791108326260736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "芯片2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1112791111824310272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统软件组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1112791120904978432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864246457360703490",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "音视频组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356679824674816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方精电有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692469308074209281",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "香港及海外HR 本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356664851009536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HK 及海外HR 部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166333461037058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "香港HR 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166340264214530",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外HR 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1692472978123694082",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中国大陆区HR 本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692469622701428738",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 HRBP 部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166326813065218",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRSSC 部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798225548913295362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 SSC 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798225552453353473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 SSC 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1798166336871022594",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HR 企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356884594790400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 HRBP 部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693793884091699201",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 物流关务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712678302327652353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信息管理本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693793911019020290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 信息管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660830169341954",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663516893655041",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应用系统科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356163036090368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 信息管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356026154979328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程与基础服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356139321495552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357332445794304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应用系统科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1797554250793082881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南项目筹备组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166242176155650",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发/PM 组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166245523271682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166249025458178",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PMC 组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166252435484674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166255807709186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车间/动力组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166259234439169",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166262623436801",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166266058571778",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166269422403585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166272794640386",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166276116455426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166279425830914",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166286312808449",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1797554305243435010",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧创新业务BG",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166282877681666",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166289680846850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧出行组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166293103398914",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智显应用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809049426199773186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能汽车解决方案BG",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809059538859655170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品与市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069698160209922",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户与市场企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069707001790465",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069732956205057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809059542730997762",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧骑行事业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069719685312514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069749582376961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069764224675841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809059546573012994",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外系统事业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069781454876674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069800081797122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069815210635265",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069828728942593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发质量科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069843358646274",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809059550511378433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069858147741698",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能座舱组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069869354909697",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809059554416390145",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069884483825665",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069902385000450",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069923738251265",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069939622146049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产制造组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1809069952494436354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1809069974707470337",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1809069990763229185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356011906928640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1069555503966715904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核算预算部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1769618771343015938",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计税务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769618776246095874",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1069555506248417280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业融资部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355998057336832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金及分析部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1769618786262093825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金科(境内)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356255696654336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计/资金及税务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357512817643520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355999584063488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资与投资者关系部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356014788415488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356147181621248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法律合规部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1769618791072972802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法律顾问",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769618796047466497",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务科(境内)",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356179209326592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356158875340800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 会计税务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357340679213056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356633335009280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693476979027898369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693476980151971842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 会计税务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356283601358848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥精电财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357121858179072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成本核算部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1769618781283467266",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 成本核算科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769620505322754050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 成本核算科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356022027784192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1060565216221200384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1085603098723876864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694905469623214082",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧洲 OEM 部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000469061632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038972772352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Conti部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088012574720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日本车载部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356493534662656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧美车载部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356510756474880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日本销售区",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356939372400640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业产品部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356976336801792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中国销售区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357017323540480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东业务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357203466752000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美国销售区",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357281866682368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中印韩车载部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357559030484992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧洲销售区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356009616838656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法国",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356017695068160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "英国",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356026272419840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "德国",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356567467659264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "意大利",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356977045639168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "瑞士",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357012969852928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北欧",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356022623375360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 制造中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455470712487937",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SPM部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455474596388866",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693478895535390722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693478896118398977",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国内产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693455513121071105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455514450690050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力气体科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455514937204737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调水处理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693456667888484354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455518376599553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全环境科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456662725296130",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消防管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693456691636674561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456693222121474",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456698867589121",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新产品技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693478769848885250",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module PI 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693456731327373313",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456710972370946",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456717221855234",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456720430526465",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456731855790081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693456748800798721",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456742907801602",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程切割技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456762428137473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检测技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456767951990785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程贴合&整机技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166316616728578",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程POL技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166319984693249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程OLB技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166323382140930",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2 技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166330134970369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程组装技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693456803750375425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456793021390850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "效能提升科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456795034615810",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造装备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456806610870273",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧系统科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693478039964483586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693855516964597762",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943210085441538",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943219660980226",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程检测制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943230742331394",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程切割制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943239294517249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程组装制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943249901875202",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程贴合&整机制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1789943260568002561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2 制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693478225080123393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456780627271681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693456780958531586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693478225675714561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693855477198401538",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693855509016391682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356242891444224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 制造中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750772984341250050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT 车载 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750772987981938690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试技术科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1869565397423075330",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356111425179648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test&Tooling",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356427793141760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test&Tooling-TE岗",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750772991626756097",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA 整合科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356093343535104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356688175534080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA-FA岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356987883720704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357021236826112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911608816046081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1869565414414139393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1869565431866691585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356452480815104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME-PE&ME岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357550704791552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356228358180864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1825091764378333185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1825092107556265986",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1825092496682819586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1825092647866474498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1829934707115184130",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1829934715856146433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1829934721916891137",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1829934728955011073",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988430156095489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-测试/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988437018046466",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-装配/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988440302100482",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-检查员/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988443573637122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PUR-测试/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988446874591233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-测试/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988450074808321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-装配/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988453296070658",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-装配/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988456697610241",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-检查员/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1848988459965083649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT-检查员/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991518416896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043406151680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356048380596224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356076658593792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356133596270592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356220217036800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PK",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227808727040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356264987037696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356277062438912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356277641252864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356323992506368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356384679890944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356411452133376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356754663641088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357280583225344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357423017594880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357519721467904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PK-包装I",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356019309875200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 行政保卫部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356018311630848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政服务科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356039421562880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组-后勤",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356976194195456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组-洗衣工",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356189908996096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安保管理科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355988238471168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组-后勤",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356170808135680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT 车载 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356107855826944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1848988426829971458",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-贴片/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1869565369497346050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1869565383799894018",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356057935220736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-加压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356157478637568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-MQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356293604773888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-邦定",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356641048334336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-SQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356765619163136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356830563766272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356994850459648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME-PE&ME岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357407356063744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG1-贴片",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356254954262528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1848988433679380481",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG2-水胶结合/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356001798656000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG2-水胶结合",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356035134984192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME-PE&ME岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356080651571200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG2-SQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356702352281600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357546271412224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MFG2",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356412723007488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新产品科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356658421141504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPI",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357462037204992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPI-NPI岗",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356807411208192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356052478431232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Support-物料管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356081289105408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125866168320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Support-更衣室管理员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356159177330688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Support",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356239213039616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE-IE岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356995404107776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Support-清洁工",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356201380417536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356580239314944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV 模组部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166303140364290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798904218996862978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1798166306474885122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798902048272658434",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TE&PE组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902051921596418",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG贴合-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902055625187329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG油印组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902059379093506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EOL",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902063011360769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG油印组-丝印I",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902066555551745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EOL-QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902070116515841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EOL-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902073736171522",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EOL-贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902077506879489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOL-DI拉",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902081139224577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOL",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902084670742530",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOL-邦定",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902088319795202",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOL-热合",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902091918499841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FQC-测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902095454298114",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902099019436034",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FQC-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902102660112385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FQC-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902106246250498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902109815676929",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902113414311937",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-加压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902116996222977",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902120594935810",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902124160114689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902127813361665",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组-发料员",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1798166309826088962",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCM 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798904107814248450",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME&IE&夹具",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904111362711554",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904114931986434",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904126411800577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-检测",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904129964453889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-加压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904134922035201",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-热压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904138424287233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-喷油",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904142165577729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-扫油",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904150273167362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-特环油印",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904153913851905",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904158900871170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904162449260546",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-包装",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904165985050625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS-装配",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904169541902337",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-打螺丝",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904174239420418",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-滴胶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904177787908098",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-检测",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904185442426881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-组装",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904189053726721",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD&CMS-物料管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904192593797122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904196196622337",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC-检查员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904199711428609",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Kitting",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904203284975618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Kitting-物料管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904206934040578",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PACK-包装",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904210474119170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PACK",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904214093717505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1798166313240313857",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798904971710935041",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&客诉FA&应对组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904975246626817",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904978795036673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC-测试",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356044064657408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798904910067245058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT ME/半站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904913619742722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/IPQC/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904917201682434",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/SQC/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904920741675009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/焊接滴胶修复/坐岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904924340379649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/烧录测试/坐岗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904927871991810",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/物料管理/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904931391004674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ASS",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904934956171265",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT新线组/操作/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904938462580737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904941998399490",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB-PCB清洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904945538400257",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB-邦定封胶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904949132992514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB-检测",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904952727515138",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB-开机",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904956296863746",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904959870328834",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT-焊接",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904963406209025",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT-检测",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904966967099393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT-开机",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356287548198912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&ME",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356767041032192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE&夹具",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356590595051520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356009763639296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT生管科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "968889976571826176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356267298099200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV生管科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356363301523456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356409623416832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035100199723009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357047220539392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "仓储科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356232112082944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HYN1仓储",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356611402993664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HYN2仓储",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356661835304960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HYO仓储",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356947526127616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 动力技安部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356153951227904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035081627357186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356202282192896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务1科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035086274633729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356240857206784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务2科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035090854805506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357271758409728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "纯水及化学品管理科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035095506288641",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357111217229824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV LCD 部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166296467275777",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD 前工段科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798902015615725570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压清洗2",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902019273236481",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压清洗2-封口(QC)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902022930587649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压清洗2-封口(加压) 排/插",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902026567057410",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压清洗2-清洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902030178353153",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割液晶2",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902033802227714",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割液晶2-切割玻璃",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902037421916161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割液晶2-入液晶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902041054175233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&客诉FA&应对组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798902044703301634",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压清洗2-清洗I",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355979581427712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CNC-CNC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355999936385024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制网-制网",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000993349632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "液晶-入液晶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002792706048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压&清洗-清洗I",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018793975808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试-测试+光检",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356032236720128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压&清洗-封口(QC)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356068349677568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "液晶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117448200192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CNC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356141015994368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A3&A4拉-热压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356256413880320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356271458848768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小-磨玻璃",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356328849510400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小2",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356365490950144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试2-测试+光检",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356405848543232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小2-DI水洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356421862395904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小-DI水洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356497104015360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356517186342912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC-液晶首检",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356566993702912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "磨小2-磨玻璃",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356615358222336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割-切割玻璃",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356629757267968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A2拉",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356714851307520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切割-切割玻璃+磨玻璃",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356739660615680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356876722081792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A2拉-投料",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357067428696064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC-液晶首检",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357102648266752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压&清洗-封口(加压)排/插",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357118045556736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压&清洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357128820723712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试2",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357203626135552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制网",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357238384332800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A3&A4拉-移印",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357304696279040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加压&清洗-清洗",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357324740857856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPQC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357539468251136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A3&A4拉",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1798166299822673921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV 支援科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798904222868205569",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904226450141186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SUPPORT",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904230120132610",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SUPPORT-更衣室管理员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798904233765003265",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356030760325120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD 后工段科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355997046509568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000724914176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试-测试(暗房)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356040977649664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD Kitting",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356057549344768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "入脚&QC-入脚",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356080697708544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片QC-印字",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356081771450368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356090860507136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-加压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356114650599424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD油印",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125597732864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-机贴",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356150495121408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装-包装",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356151468199936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-发料员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356159349297152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "入脚&QC-移印",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356168367050752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切片-切片机操作I",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356211258003456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "入脚&QC-滴胶",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356241574432768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "入脚&QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356247689728000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片-手贴",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356279679684608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD Kitting-发料员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356280711483392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356395681550336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "入脚&QC-QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356506251792384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD油印-丝印I",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356616381632512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装-发料员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356957915418624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切片",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357018627969024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片QC-QC",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357246403842048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357305178624000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴片QC-发料员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357320936624128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "切片-切片机操作",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357467020038144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装-包装I",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356260020981760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356274046734336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CEO办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693476834433507330",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精电经营企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456683310981122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 经营企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693456680802746369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693476911675736065",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 经营企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693458100474077186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 经营企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693458101401018369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693458276995461122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 经营企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356328149061632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精电经营企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693459233053483009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场分析科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356056706289664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划科*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356418884440064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356033876692992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1043123359316967424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "保密科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356797797863424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化运营推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356096862556160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略及洞察部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999424679936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划及市场洞察科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357321276362752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系及品牌推广科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356288726798336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公司秘书室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1069555503236907008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公司秘书部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356780274061312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357155362279424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资者关系部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356234939043840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中国香港区",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356709474209792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中国大陆区",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356316463730688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥疆程技术有限公司深圳分公司",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356371421696000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455485031931905",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 QA 部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455482460733441",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455489389719554",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455493512765442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455495513382913",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A1 QA 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693477900503875586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694660587264585729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA 管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1759015400861048834",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355999231741952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CSO客服中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118200926075617280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客服支持科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035055937224705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355981921849344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CQM2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759015393818705921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A1 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035027986411521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356280564682752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Continental科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356350819274752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日本车载科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356743242551296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧美车载科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356368687009792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759015389976797186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356507845627904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356571796180992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356735667638272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CQM3部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356359090442240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驻厂服务科*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979157803008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驻厂",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356665421434880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357122567016448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356751887011840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CQM1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759015385728008193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035023385231361",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356120933666816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035018708590593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357474137772032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356089841291264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911544777412609",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 2科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035042142232578",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356252790001664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IQC",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356438060797952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864244234085871618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT OQA/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000653611008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356534093582336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD OQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356542104702976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV QC Center",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356620831789056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCM OQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356802881359872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG OQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357207547809792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT OQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357481188397056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356657380954112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035032667299841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357037280038912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QS科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035037536821249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356034413563904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA组 LCD IPQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356051345969152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA组 LCM IPQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357317627318272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA组 TP IPQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357463161278464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA组 COG IPQA",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357555192696832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA组 TFT IPQA",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357073279750144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "A1 QA 科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1787407467748196354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1836242742641045506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HUD",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244116393811969",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IDS/全站",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117691469824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RA",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357239818784768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356170460008448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759015397266530305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1759015404325441538",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QSM 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1759015408154845186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel QM 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356787555373056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356532734627840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694220558159564801",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V2 采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693455499003068418",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备及备件采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455503922982914",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组材料采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357042711662592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356157814181888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356096623480832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356167540772864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356287699193856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356452669558784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356907046899712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356528867479552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660125710864385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694662907763277826",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663040311697409",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机械企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357354046459904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备辅料科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356571905232896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发本部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1122816204541526016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1122823487052840960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理一科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035060534190082",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1122823490827714560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理二科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1778603566194384897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1778603579448438785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603583684632578",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603612466012161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发三科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603616823894018",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发四科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1778603570803924994",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外开发研究所",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1778603621177602049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北美开发研究所",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603625489326081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日本开发研究所",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603634272186369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "韩国开发研究所",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603642501410817",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧洲开发研究所",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1778603575048613889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1778603646767050753",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1778603651066212354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356187740540928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术研发组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864244278973329409",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356582344855552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFT及TPM开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035046751772673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356501382205440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035051428368385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356912583380992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356951275835392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PSV及TP开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1122816207720808448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356079489748992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356195646803968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035076904558593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356358423547904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356819897651200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD开发科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1854035072244686849",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356621855199232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 物流关务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356645620125696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356977339240448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "V1 物流科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356624602468352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精电汽车电子(惠州)有限公司",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356793137991680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "睿合科技有限公司",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357108235079680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方艺云科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020370598232064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "校园BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019961473236992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1724981327025135617",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "高职教战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1724981339746336769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1724981353843392514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术服务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1724981367411978242",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案设计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710413932314625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019982847410176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710639145467906",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "售后组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710679305863169",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710735421517826",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件企划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710427115012097",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普教战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710566546206722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710842950860802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710438288605186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1064857080239751168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创意文化BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750709488492638210",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "E3项目筹备Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710388833546242",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "E1项目运营Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710534153617410",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "发展组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710652172972033",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "馆办组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710715926392833",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710826395942914",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1808736873087168514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研学组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710401001242626",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "E2项目筹备Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710498728493057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字平台Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710618605895682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710728790261761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字文创组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710810696642561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台产品组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710522107609090",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内容拓展Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710612075425794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌设计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710723878797313",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "展览策划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710625815904257",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1064857080470437888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小课屏BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1064866455582932992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866458888044544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "代理渠道战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866459882094592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略渠道战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866463124291584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866467343761408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866467549282304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电商战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866469503827968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866471651311616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设计Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866474557964288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "抖音战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064866476294406144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "售后Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064903383044849664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1082660281370279936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "温州基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1082660284109160448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "宜宾基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1082660289171685376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1082660290845212672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "杭州基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1085229099078647808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "周口基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1104100618739384320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "郑州基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1123273292803735552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1137075125951135744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "拾光纪BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1137077859286777856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产研Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1137077863590133760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710447453138946",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1137077843415531520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电商组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1137077851183382528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "抖音一组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1137077855558041600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "线下&社群组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710582920818690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797554255406792705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "抖音二组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1701128622204686338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外业务平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710254099972097",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字艺术显示文化和旅游部技术创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019938568142848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字艺术显示产品创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019932184412160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020039793475584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直属销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020113273487360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1828607123093860353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1828607180069281793",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020128733691904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1797554263078096897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案策划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797554267717099521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797554274004361217",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创意设计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797554278785765378",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案产品组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1797554283420471298",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端产品Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1798166231841382401",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "渠道管理组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166235377180674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1798166238757797890",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KA销售组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1828607071369699330",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "售后组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911638683684865",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710360714952705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字艺术显示场景创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1064866479066841088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创意Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1064871446972465152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064871457961541632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "策划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710669675806721",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1064871446913744896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "多媒体技术Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064871449266749440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1064871455671451648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合营销Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710334198542338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三亚基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710342721355777",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视觉健康技术创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710454495395842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "要素技术Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710756590120961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康光显组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710779222638593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视觉监测组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710467975888897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视防Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710478566506498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "温州视防Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710703645442049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710769600905217",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场品牌组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710488339214338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合事务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1828606986615402498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1828607036024299522",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750710351210688513",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710374333857794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769618766418853890",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法国基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793117203621666818",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1808736869257773058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "天津基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1815212977746481153",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "威海基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911589144760321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "长沙总部基地",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911764747685889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低碳显示BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911548275462145",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品研发Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710547281756162",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "嵌入式开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710690689269761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件开发组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911603548000257",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355988796313600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020368782098432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品品质Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1808736864912506881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ESL测试组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911564356423681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357336719790080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356131910160384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "首席增长官中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020318714691584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略拓展Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710509629554689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌与传媒Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1769618751193579521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌与运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769618756432265218",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运维组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1769618761457041410",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356328539131904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营支援中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130639374024704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计税务Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710556916105218",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710744544067585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "税务组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1694659539040911362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资者关系Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1696328219248222209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合法务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710461239869442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化变革Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710573005434881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710597860868098",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1828607257441607682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI技术组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1797554295567253505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务支援BP Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911584283561985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911617313705985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩推动Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750710590713839618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营分析组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750710799376203777",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357225121943552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911665430761473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政保卫组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911671227289601",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRBP组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981595520331943936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1808780380057300993",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合采购2Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911595926949889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合采购1Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911747970469889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357288858587136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东方承启(北京)商务科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020405771665408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1075005771546099712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "文化与党群部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1691705218217218049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693455422780071938",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品线平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810693096579073",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128836240584705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245182992736257",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356004038414336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356023558705152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356039954239488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356045562023936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356060338556928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356064717410304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "管理咨询BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356085781204992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356087932882944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品控部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356104022233088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356112482144256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356121910939648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧后勤解决方案BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356156266483712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356191196647424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华中区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356200566722560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356202554822656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356217570430976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227401879552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356237354962944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华南区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356260356526080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术中心园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356349749727232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356350643113984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四川区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356511138156544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州高创园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356626800283648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州光科技园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356671037607936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356790294253568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356831721394176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356883873370112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356974520668160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356979117625344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357074777116672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357099963912192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357112160948224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆智慧电子园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357143249129472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357181983526912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357238547910656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区域行政营销中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357291643604992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357371238912000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357497441325056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥智造园区行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357485177180160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京京东方知微生物科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1063149007494184960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1063149011491356672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1063149015635329024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "芯片研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1063149020240674816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "试剂研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1892990263480188930",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1063149020899180544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备生产部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1892990309546201090",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "试剂工艺部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1892990366714593282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "库房管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355997373665280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "试剂盒生产部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357242670911488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1892990339111849986",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356069029154816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356292732358656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356292828827648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355988246859776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357319145656320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "注册临床部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965937706376892416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场品牌中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1768441884344188929",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中央市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768441888962117634",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768441893609431041",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1768441898479091713",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476488862593025",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476493870604289",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CMO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476514569527297",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光伏SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476713446580225",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIPV BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476718249123842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476519841701890",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476703803904002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476509578240001",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476529937420290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476535792640002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476524803592193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476566591479810",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光伏器件研发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476637177356290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品技术方案部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476641971474433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476647528898562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "基础技术科研部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476586732527618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料研发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476653015068673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术战略与洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476657997914114",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子化学品一部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476737626742785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子化学品二部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476592059256833",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光伏+研发中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476571519721473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C1",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476698900733953",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476708728008706",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产运营部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476576393502721",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "G0",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476663244955649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476673055465473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476682790477825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质保证部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476687827771393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476693926322177",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356005468672000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方创新投资有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355994513149952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002591379456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链专项平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356131113242624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356189753806848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "基金管理平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "980767279731970048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "基金投资部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "980767910358159360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "风控管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356200067600384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略合作/投资与管理平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356717355307008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营与投资管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356921173315584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356960662687744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链金融平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503211272695809",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "980765979745193984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "980766047172825088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "980767295909400576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新投资管理中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356023441264640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011576358804914176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医院管理SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "972151158728560640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西安医院项目组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1011576457094234112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧康养SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1104100613542641664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营服务BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1105057730265088000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资产开发BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356013689507840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养社区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1814171461154455554",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171465042546690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "管家部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150836601819136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150857950826496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150941434253312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营保障部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151120363261952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151165028405248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151754932097024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场品牌部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1037469738751492096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集中采购平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469584883449856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集中采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1037469858368847872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1037469860092706816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1037469963083841536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务发展部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1909174526684639233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医疗战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011575865969999872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端产品BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356262642421760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与寻源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356370104684544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工解决方案BU",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1909174526684639233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医疗战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011575865969999872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端产品BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356262642421760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与寻源部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356370104684544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工解决方案BU",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355984249688064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医院督导管理委员会",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356010493448192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356158615293952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "变革项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356418037190656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "标准化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356029241987072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1088423687767457792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1088423709275848704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171398025998337",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171413905592322",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "院感组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171427818127361",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医院组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171442917543937",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "学科规划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171456511332354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "对外合作发展组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171484231516161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "分级诊疗组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355988292997120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038767251456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356330095218688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356528150253568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356032995889152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政保卫",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469852261941248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行保企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356035172732928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专家委员会",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356061898838016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130171721711616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生殖医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1134476499500400640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356259148566528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放疗科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356393794113536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤内科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1136601911672176640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136601916311076864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整形外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136601919855263744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科教部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663085907976194",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "教育科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663111069605889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科研科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1694649487466831873",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694649495154991105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "血管介入科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243188374585346",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243212282114049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌服务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356009151270912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医联体办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037018226688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356817288794112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌宣传科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355979191357440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "输血科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355995595280384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136602164362215424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022820507648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质控科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357036646699008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预防保健科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357252284256256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医患关系科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355997759541248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "口腔科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356014243155968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "耳鼻喉科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356015711162368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356534647230464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357320592691200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356032735842304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006911512576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357293174525952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经外科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356032765202432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心脏中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356263355453440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心血管内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356295223775232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心胸外科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356036871426048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检验科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356056341385216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临床营养科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356074955706368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "皮肤科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356087148548096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨科中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356091032473600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130513075142656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检中服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136602155172495360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医疗质量科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694662941426720770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际医疗科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663070762344449",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356255570825216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会员拓展科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356129548767232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356140965662720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130656289652736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤放疗护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136600211246809088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136600215462084608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136600219887075328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899249920802817",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913211304079361",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "导管室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913251137445889",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预防接种门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1814171537536860162",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "GCP 病房护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355978784509952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356004835332096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356021734182912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ICU护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356120979804160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356321144573952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356440548020224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心脏中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356455374884864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "透析中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356462354206720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "影像科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356479894786048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨科中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356662653194240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "手术室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356706357841920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内镜中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356959614111744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357108683870208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357162643591168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消毒供应中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357470874603520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普外/消化护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357510363975680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356144316911616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356153624072192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130514991939584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专科经营助理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356193251856384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "药学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356250755764224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "超声医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356285442658304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "病理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356291910275072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "感染性疾病科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356407413018624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中医科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356434197843968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "院感部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356500623036416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356639727128576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后勤保障部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356085248528384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "员工服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356668177092608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357403174342656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356665773756416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "泌尿外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356868337668096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全科医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356897920094208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学影像科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356964672442368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内科综合病区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356098913570816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内分泌科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356166362173440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消化内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356173677039616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356280782786560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肾内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356891527974912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "呼吸内科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357027347927040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "麻醉科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357086152069120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357133233131520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357170608574464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医保物价部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357204762791936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "眼科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357301638631424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356844958617600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357273046061056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357521323692032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临床心理门诊",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357564311113728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重症医学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356078747357184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037470017131642880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356960520081408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "规划设计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357504659722240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356364723392512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥护理院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984115470336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355993493934080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后勤保障部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356006349475840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "超声诊断科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356015073628160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041594212352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "药学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356219621445632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "院感部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356337892429824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356374928134144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营养科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356413385707520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学影像科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356478766518272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356594864852992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临终关怀科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356741845848064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学检验科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356852877463552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357261809520640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356469018955776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与品牌中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356332632772608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357002450538496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划拓展部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356513268862976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工研究院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1797906181113667585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能硬件研究所",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130162238390272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能硬件Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913241809252354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统开发Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243200466759682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应用创新Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1797906194430681089",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "再生医学研究所",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1797913237019418625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356008807337984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356093117042688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临床Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356655283802112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357380218916864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356140537843712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划与项目管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356718491963392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136583058938396672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136583080572616704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五官科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136583084326518784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243825262866433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991417753600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355997847621632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018588454912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放射科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356029279735808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "药剂科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356113870458880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356137069154304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美容科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356152218980352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检验科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356241360523264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864243998907047938",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计核算部*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355986523000832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "收入运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018609426432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医疗编码部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356473532026880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356530012524544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356532503941120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "超声科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356821533429760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864244234245365761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科女性康复中心*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244317703516161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科产后康复中心*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244404697571329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "体检中心*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244552165109761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "感控*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244602177986561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊科*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043179659264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美容科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356057008279552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "手术室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356113396502528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356128080760832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五官科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356180064964608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356502330118144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外科门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356685021417472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356719414710272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际学校医务室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356847106101248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科病房护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356932623765504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全科病房/急诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356836330934272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "麻醉科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356875614785536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357138731864064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357235020500992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357266163208192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普通外科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864244191295578113",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外科合作项目*",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357443506769920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356968971603968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428368996794368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1058428373451145216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "介入科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243238446178306",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学美容科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873680420432969729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356005103767552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医疗质量管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356506843189248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医患关系科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356000485838848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肾脏内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002746568704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普通外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356003157610496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "皮肤科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356003551875072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "口腔颌面外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005904879616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1062035253922627584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1062035264081231872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨二科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1062035270943113216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普通外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913232313409537",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864243225183903745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "导管室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355977983397888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "手术室护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984425848832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "影像科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355986275536896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991551971328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外科综合护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356006273978368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VIP产科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356009075773440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "皮肤及五官科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356026113036288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356062884499456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消毒供应中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356080861286400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356096531206144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内镜护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108652744704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356112314372096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心血管内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356548345827328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "血液净化中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356630222835712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内科综合护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356701500837888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356954090213376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "呼吸科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357005197807616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重症医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357103789117440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨一科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357120671191040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357229001674752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际医学中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357368202235904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消化内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357446442782720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203587721859072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "发热门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356010845769728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356016256421888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "眼科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036808511488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "麻醉科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356058228822016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "药剂科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356060732821504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356091372212224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心胸外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356098288619520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356174788530176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学检验科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356177200254976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中医科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356196741517312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重症医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356217322967040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "耳鼻咽喉头颈外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356222712647680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "呼吸内科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694659941526392834",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "发热门诊",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356244795658240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356254740353024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放射诊断科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356256569069568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356265775566848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营养科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356333878480896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356346146820096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后勤保障部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356404594446336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356415948427264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356514787201024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放射治疗科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356546353532928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "泌尿外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356555329343488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心血管内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356562698735616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356573117386752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356228765028352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医保物价科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356775882625024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专科运营助理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356756202950656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌服务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356364891164672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务拓展科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356589319983104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356969248428032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌推广科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356762595069952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356772975972352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤血液与内分泌科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356843570302976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际医学中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356902219255808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356987703365632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科教科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357077952204800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共卫生科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357437689270272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医政科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356949380009984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "超声医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356980912787456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "感染性疾病科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357014119092224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357065931329536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "院感部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357128250298368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357136957673472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "病理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357185431244800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消化内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357352851083264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203075295350784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产后康复中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203598899679232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全科医学科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130504371961856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第三医务室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211505854779392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二医务室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211895723724800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一医务室",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981204361684193280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临床心理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357113020780544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都京东方医院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011576255406931968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊与重症医学中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356340673253376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356746849652736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重症医学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1136386392415272960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136583084532039680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放射治疗科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356791959392256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357517624315904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357544107151360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "血液内科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1136386392419467264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普外中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136583046896549888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普外二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136583088453713920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普外一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356755322146816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "甲状腺乳腺外科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1136386396928344064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合医疗中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136583067507359744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136583092945813504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356008337575936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内分泌与风湿免疫科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1136583075988242432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "慢病管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1764849864128221185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心脏中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356749697585152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心脏大血管外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357401425317888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "胸外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357478155915264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心血管内科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1764849871359225857",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "介入诊疗科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1764849883191349250",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科教部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1764849891449933826",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "保健办",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797906166731436034",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医保物价部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1797913218304409602",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物价科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356297526448128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医保科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1797913173878341634",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1840384485338902529",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "脊柱外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355978746761216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "输血科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005426728960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全科(特需)病房",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005825187840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "麻醉手术中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018659758080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136588882834358272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "GCP一期病房护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1136588887070605312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "慢病管理中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466309654564865",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放疗科/核医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466329455800321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "疫苗门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466355032653825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年二科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466423987011586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科门诊/产房护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1764849898995507201",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "介入诊疗科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1764849904888483842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科/中医科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913222934945794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "脊柱外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913227611533314",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355977895317504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "普通外科/甲状腺乳腺外科/烧伤整形科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984262270976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内镜中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356016055095296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "麻醉手术中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356023906832384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肿瘤科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356026859622400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心脏大血管外科/神经外科/胸外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356035294367744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "血液内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356053661224960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "血液净化中心护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356084925566976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "眼科/耳鼻咽喉科/口腔科病区护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356095721705472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "老年一科/内分泌与风湿免疫科/皮肤科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108401086464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "眼科/耳鼻咽喉科/口腔科门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356184829693952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356213401292800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356281424515072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医技护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356282187878400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "呼吸与危重症医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356383077666816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356433916825600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重症医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356495837335552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356585725464576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消化内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356591748485120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全科(特需)病房护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356636891779072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消毒供应室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356718756204544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理科教科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356895088939008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "心血管内科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356936394444800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肾脏内科/泌尿外科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357189889789952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "急诊医学科护理单元",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357363336843264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "护理质控科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357435592118272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科病区护理单元",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356019637030912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011575825029398528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经济管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356010636054528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专科经营助理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356051710873600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "口腔科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356054219067392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "病理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356082480287744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "药学部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1136588878073823232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临床试验中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356122934349824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "肾脏内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356127288037376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "康复医学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356129167085568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌服务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011576105708027904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "网电咨询科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036682682368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务拓展科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356598648115200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌推广科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356183592374272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356207982252032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "儿科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356260427829248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神经外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356281349017600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中医科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356305650814976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "烧伤整形科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356364509483008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "眼科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356400387559424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "放射科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356402027532288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学装备部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356461548900352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1764849911523885058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医患关系科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355980848107520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共卫生科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356424865517568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医政科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356572576321536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356487771688960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消化内科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356500501401600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "皮肤科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356507640107008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "妇产科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356550283595776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "泌尿外科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356589538086912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "门诊部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356760011378688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356679384272896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356690599841792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "院感部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356755196317696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营养科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356761009623040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "耳鼻咽喉科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356919839526912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学检验科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356963649032192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357150262005760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后勤保障部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357274950275072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "骨科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357346945503232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "呼吸与危重症医学科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356363397992448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "感染性疾病科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357471243702272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "超声医学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357183732551680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984530706432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356536048128000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集中采购部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357210626428928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康科技SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1797913178542329858",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913197186113538",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医学中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356093385478144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356257483427840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网医院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1107687050796072960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品&技术Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913202097541122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2B拓展运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913206728052737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2C拓展运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1797913246515220481",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健管服务Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357400741646336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场品牌部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357502629679104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694650280920096769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康云算力组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002272612352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "H业务支援需求",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356148960006144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "对外事务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356314052005888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理需求",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356339079417856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356380393312256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356394255486976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356052172247040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356475910197248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机电综合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356732073119744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "土建综合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356843440279552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合商务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356884330549248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356462777831424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "再生医学需求",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356578297352192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科研与教培需求",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356640704401408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物业组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357505477611520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康科技需求",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356067871526912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693884335360487426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "晟视科技",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693889368563036162",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交通BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889377685647362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889394517389314",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889399902879745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建筑BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889413668581378",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693889439853649921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RTR Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889443754323970",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IGU Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1693889428650708993",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889447206236161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保客服Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909174880352583681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1730512682026749954",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "柔性研发线项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730519288504266753",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730519312252403714",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730519335702769666",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730519360239448065",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1793090876592021505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃基先进封装项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1793090885811060737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1793090908028272642",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PIE Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793090912977608705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设计Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1793090889577590785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793090893318905857",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793090896942727170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂建动力组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793090900654686210",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1793090904341536770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909174733996466177",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356100729704448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429879363276802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "986934239750524928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986949044817367040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355990503395328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略统筹科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356867930820608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986933473283411968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356482969210880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel材料采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986949097711734784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module材料&OEM采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356117397868544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020184622792704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1891429868453949442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感创新交付部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043884302336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356323422081024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356797667840000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356808862437376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356827774554112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356396314890240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355983012368384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012267638784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356867062599680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357255346098176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357343262904320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357434258329600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356430120980480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356336961294336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356618143240192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356439616884736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020025931300864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355979182968832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356106979217408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356494834896896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356484118450176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356021553827840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "转型产品开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356123756433408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356243797413888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356487570362368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "转型技术开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356922901368832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357020662206464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357391400931328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356018491985920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356079141621760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356616159334400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357435227213824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993019977728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356170921381888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356177137340416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357087230005248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357367673753600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986933574693294080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357246047326208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986948825031643136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM生产运营科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986933617059958784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356587436740608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "986933476743712768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "986949397747077120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986933570905837568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质保证部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356918400880640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357035501654016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357356793729024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986933847100755968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356797537816576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986949575468126208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357131383443456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356265637154816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356297614528512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357168079409152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重大项目推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "973254209619103744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新型传感试验线项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "973283866624135168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "973284213052674048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "973291062854422528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "973291902151430144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "973292337717317632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "973292407942549504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "986934358956838912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CMO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429864192499713",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微纳创新BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429971453415425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPD Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356144996388864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MEMS Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355981011685376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能感知BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429967082979329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显感融合Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356103820906496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "遥感方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356206283558912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行业方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356010824798208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "影像BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891430002738728962",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧美Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356111655866368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "亚洲Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356018424877056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场研究与孵化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356424081182720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微波通信专案",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356682563555328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357332093472768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新孵化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986949301139673088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场推广部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986934383829061632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693884347020615681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微纳工艺开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693884354801049602",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "扩散工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693884360035651585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薄膜工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693884363978297345",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "刻蚀工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889418282389505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "湿法工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889435902615553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研切工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693889451199213570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光刻工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1891429980215373825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营保障科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356028243742720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MEMS开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429975731625985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "封装工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355995196821504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MEMS芯片开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986933853639675904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MEMS器件开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356157055012864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "G5产品开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356235178119168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示产品开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986948786259496960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FPXD器件开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "986949144583081984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FPXD背板开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357021098414080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356090483019776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356179460984832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357303043723264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FPGA开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357473223413760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试分析部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356020731744256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036296806400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特性评估科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356094354362368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "986949120952373248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术创新与管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1693889462599405569",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术推广科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355995633029120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356482071629824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微纳创新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "992762452301058048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州传感",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1008812380496330752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1008813453181190144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1008812629994504192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1008812956336521216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品研发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1891429984736776194",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品与技术支持科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1009023909976080384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1009024513620312064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第三营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1009024680922710016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1891429993767170049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1891429998175354882",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356973153325056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356814302449664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后台(业务支援体系)",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646556157050880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团CTO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356646559649792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与知识产权管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992164339712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IP运营与创新业务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356093964292096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创客实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356176231370752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识产权综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356187040092160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识产权许可法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356459736961024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术标准部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356571678740480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "申请二部(OLED)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356652096131072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "申请一部(LCD&传感)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356724858916864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专利开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356730064048128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新体系管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356812050108416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "申请三部(智慧系统&智慧医工&软著)",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356674346913792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团CTO组织(支援部门)",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356355827273728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合实验保障部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356155054329856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团CTO 采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357101775851520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识管理与培训部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357130355838976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EHS部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357187503230976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356745205485568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团中央研究院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020235449368576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "分子生物实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020408607014912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料实验室*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730512771541512193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "卫星通信实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356024821190656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新技术实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356134779064320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356188143194112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "地面通信实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356188856225792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "量子点显示实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356206606520320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DSI实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356513814122496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "触觉交互实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356657150267392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薄膜光电器件实验室*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356940232232960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "柔性技术实验室",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357055512678400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术战略与协创中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356028726087680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术战略部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356098955513856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CRI项目经理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356107075686400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "共同开发项目组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356278857601024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方北京大学研究院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978482520064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT解决方案实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002255835136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356103913181184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356186780045312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356207801896960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专利与标准组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356635604127744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工融合实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357365366886400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微纳技术及前瞻技术实验室",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356423326208000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方北京航空航天大学研究院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356029661417472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT解决方案实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356039660638208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356055355723776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356768152522752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专利与标准组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357072516386816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工融合实验室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357307258998784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357375445798912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务BP",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356449989398528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方电子科技大学研究院",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356185819549696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356198268243968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理与知识产权组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356576258920448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356773739335680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356896196235264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设与运营保障组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356917142589440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356949237403648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光电及传感技术研究所",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356978979213312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工融合技术研究所*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357542660116480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "X作战室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357548678942720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务BP",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357175658516480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创投team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1109122879259148288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团国产化办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1109133727633506304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方装备平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1109133727750946816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1882732042286972930",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "董事会秘书室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356928253300736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市值管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000448090112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "股证事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356257286295552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资者关系部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965355993682677760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CASO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356071889670144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合审计中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476732711018498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356054764326912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356187165921280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程审计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130639948644352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356253532393472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都创新平台审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356948503400448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆创新平台审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356608806719488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357075469176832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合审计部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356101732143104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥审计办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978843230208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355999844110336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12''扩产项目审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356774242652160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京审计办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356811286745088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都审计办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130657069793280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "高端模组项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356093075099648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356195768438784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356523788177408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都车载显示审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357437005598720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内控管理与企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356075140255744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内控管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356331949101056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357442965704704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务审计中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980130881536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C3C4审计",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356193620955136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356396046454784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字医院审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356433258319872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357192913883136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357421327290368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357553489809408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151434399191040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养中心项目审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357555016536064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务审计中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694661147468484610",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355995993739264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程审计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864245146850418689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356280136863744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网移动显示端口器件生产基地项目审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356971202973696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案运营审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357019626213376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18/B19审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357028769796096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端审计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1712810658896166913",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128893702549505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357133686116352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED审计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357236329123840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD审计部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356003862253568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CPIO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356530700390400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "考核兑现中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356599398895616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩考核中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357539879292928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "体系企划中心",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356026918342656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CCO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476727870824450",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356051056562176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "监察联络室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356146695081984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1011576598828154880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1741753224567869442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356469295779840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356477361426432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356152537747456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆区域企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1909174695660527618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909174711661756418",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党群工作部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356439050653696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥区域企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356031800512512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "群工部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356735541809152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党建工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357050731171840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356581434691584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术创新中心企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356602959859712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356610383777792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区域企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356014163464192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357156775759872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356625869148160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "武汉区域企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356723487379456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团党群/企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000615862272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划与数字化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356146820911104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "群工部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356420939649024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党建工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357539652800512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356778260795392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四川区域企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356216895148032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356231701041152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党建工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356836481929216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "群工部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356801027477504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务企业文化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356024120741888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "群工部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356167729516544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业文化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356427252076544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "党建工作部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357048181035008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357196890083328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福州区域企业文化/党群工作部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356031452385280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIAO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356025001545728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资产管理及资源调配中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356245076676608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "固定资产管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356417374490624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "不动产管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356716562583552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357082544967680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "投资管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356100373188608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合业务投资管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356115858558976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示及传感业务投资管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356387548794880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧系统创新及MLED业务投资管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356943478624256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务投资管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357476021014528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密事业",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357166355550208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密零件与材料业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992323723264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京京东方真空技术有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356321782108160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事总务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356019913854976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356075027009536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356717980258304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台运行科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357487098171392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356399028604928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密零件事业部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981405949952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067229798400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356612283797504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356660254052352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术质量",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356754411982848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357538931380224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356861052162048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "连接器事业部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356101098803200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术质量",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356627370708992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357033417084928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357406852747264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子管事业部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982483886080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356040793100288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245483524096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "零件加工",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356386932232192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外协加工",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356811538403328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术质量",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356906900099072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356221051703296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备运行",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356926948872192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357137104474112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357491737071616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模具与设备事业部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356073345093632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356168962641920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356173949669376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356568029696000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357079730589696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357566932553728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356024200433664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356073076658176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356169306574848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356382066839552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965355998543876096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日伸电子精密部件",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355987215060992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工场",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356972461264896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356043209019392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "冲压1课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356070031593472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "冲压2课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356159978442752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356287858577408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "加工课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356508780957696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "处理课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357052232732672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356503311585280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检查课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357032976683008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OA课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356159236050944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术设备",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356448068407296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356668978204672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357212891353088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "金型改善课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356197567795200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357501711126528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人劳课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356572786036736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356331617751040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357088291164160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356207617347584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356189103689728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日端电子",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356035265007616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356087815442432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业外勤",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356062746087424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造二课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356167960203264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产三系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356296297517056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356330518843392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产二系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356367101562880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产一系",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356072392986624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356095230971904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "税务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356734434512896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356178525655040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造一课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356537411276800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357257623605248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "冲压",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357537501122560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一系",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356527672102912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事总务课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001819627520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全管理中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356363830005760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "网络管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357379694628864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事总务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357375789731840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356866680918016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357520430305280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划系",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357465241653248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理课",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356031674683392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品管一系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356848876097536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品管二系",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357193236844544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品管三系",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356385648775168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空电器",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356040105234432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机事业部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356351691689984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成套班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356390170234880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开关班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356085420494848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全保障部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356305491431424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备动力科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356343844147200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机修班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356378782699520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全环保科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356095059005440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺部*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356114071785472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术部*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356127816519680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场部*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356220342865920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356029632057344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "仓储科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356450589184000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "库房班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356306711973888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356106891137024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后勤管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356381404139520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357312975835136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检验科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356024577921024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成品检验班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356420557967360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "进货检验班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356567912255488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356142882459648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整管科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355994156634112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总装班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042911223808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356288869404672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "化学班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357415476236288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "极柱班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356404237930496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "部件科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356179519705088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "触头班",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356351775576064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "陶瓷班",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356879150583808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产组织科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356581212393472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销部*",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356344557178880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北区",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356679715622912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "南区",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356663122956288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信息中心*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357311503634432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996823327165124608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VI事业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996824152235053056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VB事业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996824544947736576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VG事业部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356694383104000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京半导体",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356109177032704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356443693748224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事总务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356708014592000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356480091918336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计财部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356919092940800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356975774765056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥半导体",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993527488512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术二部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355999760224256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356014226378752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356102453563392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356403965300736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备动能科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356674770538496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357119622615040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造二科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356122783354880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备动能二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356671159242752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理二科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356026222088192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978763538432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理一科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357422254231552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理二科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356292585558016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356505949802496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "仓储管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356937002618880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357152879251456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356422562844672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356522861236224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356556646354944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术一部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357509042769920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事总务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356147076763648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356216463134720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357188295954432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪酬绩效科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357159292342272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北旭电子材料",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999412097024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术质量部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979841474560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356015384006656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保1课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356278933098496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保2课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356047201996800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "天津工场",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356285090336768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工务课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356345907744768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "陶瓷基板事业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356400563720192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356683360473088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粉体事业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356111840415744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支杆制造课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356404506365952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粉体制造课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357467720486912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光阻事业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356177376415744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356361384726528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "事务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356652498784256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总务课",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357422623330304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划采购课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356640935088128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356293441196032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光阻业务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356342166425600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "陶瓷基板业务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357212400619520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "进出口业务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357295867269120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粉体业务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356764994211840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安保部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356784720023552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355997491105792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "无机材料研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356775756795904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "有机材料研发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357091013267456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务课",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356062498623488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CSCO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981716328448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程管理与培训部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356378870779904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT/行政采购交付部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1721466448674684929",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南采购交付科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466479897169921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北采购交付科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466492140343298",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东采购交付科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356413096300544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购稽查部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356717485330432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略统筹部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356895806164992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT/行政采购企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356129217417216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1104100616294105088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "职业能力学堂",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356023097331712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356084879429632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据资产部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356537625186304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2019特训营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999948967936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001890930688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京二营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000812994560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018907222016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356066281885696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117737607168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356286457679872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356482356842496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356526933905408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356939653419008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357063356026880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357176770007040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357208642523136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356274478747648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京一营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355994034999296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037504765952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356120463904768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356194329792512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356267155492864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356580847489024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356650791702528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356863640047616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357218402668544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357220663398400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357237293813760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356283743965184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京三营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006928289792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356066185416704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356101866360832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356141561253888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356146925768704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356198775754752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356420742516736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357170440802304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357176921001984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357284496510976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357430441512960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356052964970496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356088608165888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都一营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356085017841664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356190869491712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356213854277632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356241712844800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356331026354176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356529190440960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357134969573376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357239344828416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356725110575104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都二营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356027694288896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356035537637376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067707949056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149316521984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356506553782272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356561767600128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356605694545920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356945869377536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357449341046784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "969299160970825728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2022特训营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "969553955858157568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "969554888272908288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神秘的测试营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "969555410216292352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神秘的测试99连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "994242372206333952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "神秘的测试98连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "994211391235690496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491379070734336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491330748157952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491644373045248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491849512259584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491884895408128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491936929943552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491972602499072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492008140836864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492011051683840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492022292418560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492044908105728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492051048566784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492316086636544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "996491987349671936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491222933573632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491241694695424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491246371344384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491381490847744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491539339284480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491676337836032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491690426503168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491902586982400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492232477380608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492282255380480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492364103028736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492367362002944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "994211804206862336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996446142310912000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996446194500636672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996460963328692224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461149841002496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461226810675200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461251372519424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461268694994944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461323489382400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461402392629248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461553664397312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461656328376320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461708803313664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461805771427840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "996461780387500032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996460995016658944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461015182872576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461059898347520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461104097923072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461269789708288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461310101164032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461325926273024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461336646914048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461359069663232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461430716764160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996461963829579776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996462106662408192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "994212083354570752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491974427021312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491266906656768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491296392613888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491339715579904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491352667590656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491410603511808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491698198548480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491769992450048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491775373742080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491794961141760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491834656034816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492035907129344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492060259258368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492358256168960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492378271387648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "996492294259478528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六营",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "996491136790958080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491142746869760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491161356996608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491172224438272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "六连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491229673820160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491300855353344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491481931845632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491589960339456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "三连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491674383290368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十五连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491748442116096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "七连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491772332871680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "一连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996491850837659648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492041309392896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "九连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492137887436800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "十二连",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "996492338786209792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "八连",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357528940548096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划与综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356054684635136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "教学运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356092991213568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "领导力学堂",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356201690796032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销/供应链学堂",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356944422342656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测评部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356134191861760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产业研究中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356129016090624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产业研究所",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356156321009664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CFO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646744653266944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新中心财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356076138500096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "深圳创新中心财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356202097643520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆创新中心财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356349347074048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都创新中心财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356367571324928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州创新中心财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356565911572480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛创新中心财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646785979744256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "税务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356196468887552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北税务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646714013876224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646751875858432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356985526521856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东税务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356268703191040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356437964328960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357136806678528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "税务管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646823913029632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信用结算中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356162163675136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信用管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356609926598656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结算管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476559389827074",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476668252983297",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥光能科技财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476677950185473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "烟台材料科技财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1896198416304861185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四川区域财务管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356027140640768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四川区域税务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646618337607680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646709999927296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356127174791168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "四川区域资金部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992969646080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "融资科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356815934033920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356000431312896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750814914907369473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1110139772644360192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S05财务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356255373692928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S07/S12财务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356889678286848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S08财务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357127088476160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S03财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1759473051638145026",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357027494727680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "瑞晟/星宇财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357445805248512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "晶芯科技财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356096321490944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355986409754624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356366912819200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务报告合规部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356135458541568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新投资财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356152063791104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新业务/精密事业财务BP",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759473062702616577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中联超清财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356443924434944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密事业财务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356458013102080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视延科技财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356600854319104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中祥英财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356810154283008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "科技服务业务财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356160037163008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000414535680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程标准化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158929866752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内控管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356324802007040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识管理培训部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356569338318848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务战略企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356746354724864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356110871531520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化全面预算部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356505266130944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发与标准部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356582109974528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营支援部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357412213067776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTO财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357554647437312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356757322829824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019987922518016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目财务组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1852237098757804034",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646335452774400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域线财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646361730088960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低功耗终端财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646430697029632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646463978831872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT终端财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646526117445632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646555016200192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646561743863808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与产品财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646627426664448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT终端财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646645646721024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行业/产品线财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646683068301312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV终端财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646768053288960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组财务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646817483161600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12财务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356826327519232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356143855538176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646824282128384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646874676690944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动终端财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646890208198656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB终端/TPC终端/3D显示财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1695001022331793409",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "高端模组项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810670778613762",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128790384259074",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1759473059011624961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244855304237058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355979438821376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355980529340416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357009622798336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "台湾视讯/香港视讯财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356008664731648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012808704000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BHL/BMDT财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012833869824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "卓印财务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356024842162176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356114021453824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356587298328576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KPI考核科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356025911709696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356670194552832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356031259447296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037618012160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978423799808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356051576655872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356082614505472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356434650828800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356058631475200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355983830257664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356075383525376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356097508478976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357496526966784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356105876115456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356116231852032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357283825422336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356124872118272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125165719552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED财务管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356750175735808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED业绩管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356934582505472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED研发财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356161995902976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356208754003968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356279537078272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧物联财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356309677346816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外贸易财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356319060004864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356690960551936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356370985488384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356383979442176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356439247785984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356852575473664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356487863963648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mobile/SC/C财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356515194048512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载/MDS财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356684241276928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356132946153472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件业绩管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356718995279872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000339038208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356737274056704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19财务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356391931842560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357464889331712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356261518348288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356927246667776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356753917054976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356925464088576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356951598796800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12\"扩产项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356976911421440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356981772619776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18财务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984123858944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356119230779392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "会计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357189248061440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356733037809664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357022813884416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357005965365248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357166837895168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357199461191680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357228833902592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10财务部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356226852425728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算与运营革新科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357450402205696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BNJ财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357560641097728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB/MNT/TV财务BP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "998635982951546880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境能源科技财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356828684718080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356128466636800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "融资部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356487675219968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357115470254080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州区域资金部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357236975046656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥区域资金部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356582827200512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "融资科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357330109566976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357248119312384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆区域资金部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356098502529024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "融资科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356769217875968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356834888093696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务共享服务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646327265492992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南LTC组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646599664566272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646611668664320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收2组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646505317892096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南PTP组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646849443758080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646882805252096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646949268193280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金结算组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646752505004032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南RTR组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646502864224256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "固定资产组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646597185732608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041646658963636224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1041647006365253632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内部交易组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1110139224675319808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北RTR组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1110139771050524672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139771876802560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "固定资产组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139772287844352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内部交易组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139777321009152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告1组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1110139226365624320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北PTP组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1110139767820910592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139772535308288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139773273505792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金结算组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1110139231281348608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北LTC组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1110139759059009536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1110139779493658624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收2组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356031062315008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "价值管理团队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038276517888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东LTC组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356063572365312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356417470959616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应收1组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356097739165696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东PTP组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356707414806528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资金结算组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357528240099328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357535571742720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应付1组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356316216266752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东RTR组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356099995701248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "内部交易组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356593493315584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告1组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356617786724352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告3组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357340507246592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总账报告2组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357354398781440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "固定资产组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356760665690112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "费用报销与文控组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356321861799936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据与文控组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356743041224704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "费用报销组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357417141374976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "服务管理团队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1852237084455280642",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务共享推进组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1852237094131572737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外业务共享推进组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356965695852544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "香港公司财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356984045932544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1759473055316516865",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356186578718720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356215959818240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356407144583168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生命科技财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356924180631552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网医院/健康科技财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356961635766272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院/护理院财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357034927034368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357279123607552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "预算管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357327433601024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院/再生医学财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151658807037952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养社区财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357227764355072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务财务运营管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020080197206016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州传感财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1693884341324791809",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "晟视科技财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356403680088064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务BP部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356262998937600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示业务BP财务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356784464171008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器业务BP财务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356840713981952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B1/北京传感财务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356169197522944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能物联首席技术官组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706538886668455937",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联软件技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550816934170626",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件技术规划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550828913033218",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件技术研发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550837050052609",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件技术研发3部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550861427306498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件技术研发1部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538890833330177",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "大数据与云计算技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550791176949762",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "云计算技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550796583337985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IOT技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550869530767362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "大数据技术部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538895136755713",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联硬件技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550782935072769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件技术研发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550812995719169",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件技术规划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550854032814082",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件技术研发2部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538899133952002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550787217526785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前瞻研究部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550820868427778",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能技术3部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550841022017538",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能技术1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550845048520705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能技术2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550865537789954",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人工智能平台部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538903072284673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业设计中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550800924418050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "视觉与交互设计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550824806785025",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ID设计部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538911842627585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706550804896477185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550809036201985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550832910204930",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术推广部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706550849498677249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1706538916607303681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "总控平台技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706538933174857730",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联技术测试部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785181619292901378",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI+应用中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1785190919214096385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI+制造应用部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785190924725411841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI+显示应用部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785190930597449730",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI+创新应用部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785190937354502146",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AI+运营应用部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356283920125952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CHRO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019919735717888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HR COE中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019971791224832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "岗位与职级管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1701113706638946305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绩效管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991577137152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HR系统规划与管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356070820122624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "培训管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357023531110400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "招聘管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020178054512640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1701113276559208450",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部背光HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355993871421440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部背光HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357537324961792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务HRBP部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020242709708800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感业务HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356803254652928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感业务HRBP部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1133130582264381440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团人才调配池",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476581841936385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476617610928130",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C1综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476622455414785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "G0综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356104680738816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1814171472911024129",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养社区HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356297069268992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院&再生医学HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356312571416576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网医院&健康科技HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356432905998336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院&护理院HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356489331970048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356742512742400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357177571119104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357432698048512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工HR企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356227242496000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRSSC中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356063194877952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HRSSC企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356081012281344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南&华南交付部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356018861084672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南交付2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042114306048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南交付1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149991804928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南交付3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356988282179584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华南交付科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356102734581760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪资核算部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356209198600192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪资核算1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356399750025216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪资核算2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356848481832960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪资核算3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356256925585408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SSC支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356493937315840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北交付部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355985797386240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北交付1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356394347761664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北交付3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356551692881920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北交付2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356704411684864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薪酬管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356866286653440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "退休管理办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356964127182848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东交付部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356629488832512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东交付3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356733419491328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东交付4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356895541923840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东交付2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357273205444608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东交付1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357414251499520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全球校园招聘部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356766348972032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务支援&创新业务HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020150657318912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130282250010624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务支援HRBP 2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1689155931759337473",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务HRBP 1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694648916055863297",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务支援HRBP 1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356052268716032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团CTO HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356509871476736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AIoT CTO HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357370899173376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务HRBP 2部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356870933942272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务HRBP中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020303938158592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案与技术研发HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694519735691190274",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营中台HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694648280568475650",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810635978547202",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730512744890904577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组 人事Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128914397245442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244996690141185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355977199063040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355979610787840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355981443698688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前台HRBP 1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356006815043584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356030827433984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17扩产项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356031481745408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041686487040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AIoT整机HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356046526713856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前台HRBP 4部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356072900497408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356085823148032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089463803904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108359143424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356111983022080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链中台HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356152428695552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "部品苏州区HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356194392707072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端产品HRBP 1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356198012391424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED技术与产品HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356219055214592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务HR企划与培训部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356221873786880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356228085551104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356234658025472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356306191880192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质中台HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356326077075456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356475226525696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15项目 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356482650443776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前台HRBP 3部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356483690631168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356499285053440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356561989898240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356578611924992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD技术与产品HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356628356370432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端产品HRBP 2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356653849350144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356821277577216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前台HRBP 2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356970506719232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357010063200256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357051049938944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357114522341376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357143400124416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12\"扩产项目人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357310413115392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12 HRBP部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357382823579648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术中心HRBP部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356989259452416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "组织发展中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356153150115840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "干部管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356218757419008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核心人才发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356476098940928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HR企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357424569487360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "组织发展部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357498783502336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子材料 HRBP",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356138360999936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空技术 HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356325334683648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "半导体 HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356369232269312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日伸 HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356651609591808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北旭 HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356813916573696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空电器 HRBP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357172063997952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "日端 HRBP",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356305013280768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTIO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1090283677406986240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据技术与应用中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356132107292672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据应用部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357411701362688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据平台部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1090283680926007296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT共享服务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1090293563993882624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福州IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293565810016256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京IT服务交付1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293573586255872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥IT服务交付1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293575410778112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "南京IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293576341913600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都IT服务交付1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293579802214400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆IT服务交付部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293586076893184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆应用系统部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293586311774208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绵阳IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293587104497664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥应用系统部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293589298118656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "武汉IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293593500811264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京IT服务交付2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293594599718912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京应用系统部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293598341038080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥IT服务交付2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293598643027968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥网络安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293599867764736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都IT服务交付2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293602602450944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京网络安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293603042852864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州应用系统部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293606985498624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293607132299264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都应用系统部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293610546462720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "鄂尔多斯IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293611452432384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州IT服务交付与网络安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293612660391936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都网络安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293614833041408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "昆明IT共享部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293615793537024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆网络安全部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810623970181122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目ITBP组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128812832161794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245078470569986",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356023609036800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "共享规划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1090283681248968704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信息安全中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1090293580636880896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全架构与规划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090293582771781632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全技术工程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357469641478144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全运营部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1895476723055759361",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务CTIO BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356104328417280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1090283720188887040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化办公部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090283731106660352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CXO数字化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042873475072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化品质部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356207491518464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HR数字化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356592880947200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356739790639104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356904459014144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工运营数字化管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357071589445632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ERP系统管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357194318974976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化财务管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357437517303808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357540109979648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化营销部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356118475804672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业架构与流程数据管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981674385408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企业架构与变革规划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356154651676672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356895227351040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356351607803904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务CTIO BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356520860553216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "变革项目管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000636833792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "变革项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356047470432256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产供销变革项目推进组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356998382063616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数据治理项目推进组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357241920131072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPD变革项目推进组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356608018190336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发运营中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739138622488576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后端开发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003739598888632320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "质量管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003739691826020352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前端开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003739727318220800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003739958789275648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后端开发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003740058622099456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工具开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1090283720021114880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BPM管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356713945337856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357092221227008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "云中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356087974825984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "基础设施部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356157696741376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "网络通讯部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356411653459968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端解决方案部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357262937788416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统运维部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357421889327104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用基础PaaS部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357266649747456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356137278869504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT治理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356508671905792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "规划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357382110547968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专家组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357286614634496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务CTIO BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357516923867136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工信管中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356094681518080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356130567983104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356239607304192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356253108768768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥护理院信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357194147008512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357273838784512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院信管部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150829584748544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养中心信管组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356739157299200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CLO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476554314715137",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务法务中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984765587456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2COMO行销平台法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356001874153472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合同管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356689886810112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "标准化部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357098147778560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BCM管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356090772426752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "诉讼与知产中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356208548483072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "争诉管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356870669701120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与知识产权法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356256636178432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356372231196672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务策略部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357286778212352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识管理与培训部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356283077070848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020271495217152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810453685633026",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128816384860161",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245113035939842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356031003594752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17扩产项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356095478435840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356113207758848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都车载显示法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356175375732736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357140606717952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357169484500992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357297033285632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12\"扩产项目法务组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356314920226816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020190872305664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356030340894720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公司法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356215062237184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都创新平台法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356248927047680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆创新平台法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "994015323059392512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新平台法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356552347193344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合规中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356023722283008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贸易经营合规部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356349091221504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国际法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356770568441856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合规管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356625177088000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356008211746816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C3C4法务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036611379200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356048309293056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356076880891904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥护理院法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356189162409984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356382700179456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京医院项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356752134475776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356922066702336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康医疗法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357375273832448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工项目法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972152523680911360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养中心项目法务组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357002941272064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网创新法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000167071744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案交付法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356469199310848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端营销法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356525075828736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案客户法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357051926548480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999789584384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北区法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356347526746112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东区法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356642516340736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州区法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356975917371392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华中华南区法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357108386074624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南1区法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357148382957568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南2区法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357153038635008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "994000662863810560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "994014865779593216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357389140201472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED法务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "994000375491072000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付法务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "994014952316473344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户法务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356782731923456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CBMO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020433772838912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目组品牌组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356434382393344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356076918640640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356655170555904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "可持续发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356731578191872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌合作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357102212059136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌推广部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356957500182528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357562465619968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "融媒体中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356430305529856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场传播部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356727031566336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新媒体部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357064081641472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公关宣传部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356947672928256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CBSO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356194250100736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程与环境中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356133717905408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程建设管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356398026166272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "能源与环境管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356835571765248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全与品质中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979208134656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357001976582144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357118192357376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356985383915520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CSO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739366046040064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "昆明公共事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1104100618768744448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356122007408640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1133130705593696256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务市场洞察与协同平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694650253938176002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场协同部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356171584081920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端市场洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356320712560640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案市场洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357321943257088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件市场洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981135066568593408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981135952942469120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981136132613869568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1134476501505277952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务企划管理平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694650257897627650",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356007146393600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356011252617216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件战略营销部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356263854575616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356300957388800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356945349283840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357041679863808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981129061172514816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网创新战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981135030786985984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略合作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981136384242749440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物联网创新战略营销部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1873680514226040833",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476504708681729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新材料业务企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1895476607997616129",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476612825247745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "G0企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476627152969729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1895476632098086914",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C1企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355984228716544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355988955697152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356015014907904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "鄂尔多斯公共事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356073491894272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感器及解决方案业务经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356105733509120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务战略推进中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428390349996032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划统筹部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1058428394623991808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中台项目推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130147956785152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694649596749488129",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "高端模组项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810531661955074",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南整机二期项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128797632090114",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板二期项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244925969981441",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355996077625344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥智造企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355996429946880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356016797487104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022765981696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆智造企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356028541538304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356030282174464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州智造企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038553341952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356064134402048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12\"扩产项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356153817010176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都车载显示企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356188357103616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356222138028032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356319135502336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356340417400832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17经营企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356345748361216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356409719885824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356596651626496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356721813852160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357061497950208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357142334771200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357200128086016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357277286502400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357344928043008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357347822112768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357459298324480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "220项目企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357560464936960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2经营企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356124729511936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧医工业务企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1907021503787155457",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康医疗企划",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005808410624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康管理企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356013324603392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康医疗企划*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356052855918592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088692051968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "明德医院企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356105515405312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥护理院企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356408142827520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "再生医学企划",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356432536899584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务拓展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356577315885056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州医院企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356647541116928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都医院企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356730781274112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动健康企划",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356940664246272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥医院企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357113763172352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京项目企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357366549680128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357467905036288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "健康科技企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150813042413568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都智慧医养社区企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356147777212416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356550610751488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356196523413504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "南京公共事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356206149341184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方产业研究院",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356249547804672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357206193049600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356271219773440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356070920785920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356752558100480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694648776003887106",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "粤港澳大湾区总部项目展览展示组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356331269623808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "展厅运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357488884944896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场推广部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981135597441650688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356865884000256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福州区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356358155112448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356627597201408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15公共关系组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356880480178176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356102923325440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356106798862336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356914764419072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重大项目推进办公室",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356950663467008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356952169222144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357026144161792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "武汉区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356334432129024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357034398552064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CINO组织",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356449888735232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美国创新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356649990590464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧系统项目寻源",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356810414329856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示传感项目寻源",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356548572319744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PMO",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357208483139584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系与战略合作中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356294691098624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略合作部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356523691708416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356971597238272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新推广部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357462989312000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绵阳区域办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356160670502912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357374086844416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356009453260800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "保密办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356128147869696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356309077561344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "核心能力大楼行政保卫部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356463209844736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "标准与流程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356890949160960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行保企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356159915528192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "秘书室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356186062819328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "档案室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356981479018496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机要室",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356190634610688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共事务中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356331353509888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南综合办",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356878013927424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12保密科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356954497060864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11保密科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356959932878848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7保密科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356894560456704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北综合办",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357030711758848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东综合办",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357465585586176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5保密科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356877284118528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1007695785598386176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AR/VR产品与客户协同小组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1007710270388174848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营推进部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1133327035838496768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方装备平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356510068609024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356394628780032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356539823001600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356667581501440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357543016632320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "备件企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355989916192768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "备件企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117934739456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "备件企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356351259676672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "备件企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911666110238721",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911586317799425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130288671490048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED交付管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899146505977857",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899169172045826",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899330182987778",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1729044806392565761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1729053107796717570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1729053130815045633",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1729053156173930498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356651857055744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911577144856577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899078818336770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "实绩管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899262671458305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899274931421185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包生产运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125547401216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "仓储管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911608262397953",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD交付管理3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899315360333826",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911569091792897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911747139997697",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911647038738433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD交付管理1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899291037564930",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911613396226049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911672510746625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911655364431873",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD交付管理4部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899194354634754",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911714579615745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911745680379905",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911773585084417",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端与系统方案交付管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864246432765304833",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911666034741249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911682719682561",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911785421410305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD交付管理2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899059562287105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911538045554689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911563999907841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付管理2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355981460475904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993271635968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356305248161792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357320429113344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355982613909504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356112725413888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356199530729472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356416137170944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356013777588224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356740700803072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357063213420544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356015887323136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982412582912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355988272025600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356191427334144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356023491596288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356276567511040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356319965974528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356943344406528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356044823826432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356766474801152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357544992149504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356054944681984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356238533562368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356246230110208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357169639690240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356076989943808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356657267707904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356696593502208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357211557564416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356134351245312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356046400884736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356146976100352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356657968156672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356190064185344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356008840892416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149882753024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356814436667392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356255239475200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356167905677312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356264286588928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356936721600512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356292514254848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356144694398976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356365574836224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356532629770240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356322029572096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356388609953792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356795960758272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357370727206912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356327452807168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357089650118656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357381607231488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357549610078208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356537839095808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动终端产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899222188048385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899237262364673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356544889720832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356244309118976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356414241345536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356904320602112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357248949784576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2生产管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356681645002752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999982522368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356066311245824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356660031754240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356726909931520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754157129072640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003754705920196608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357123032584192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356028054999040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356181851738112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356816424767488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357289026359296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020414902665216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020420850188288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材与物控管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "998952801126055936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003755030924230656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003755074159116288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911595322970113",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组产销管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911718157357057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911549877686273",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端平台计划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911548921384961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911593947238401",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911584015126529",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD平台计划1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911541082230785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911637190512641",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911652487139329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911669344047105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD平台计划4部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911601266298881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911711622631425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911714294403073",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911679993384961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD平台计划3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911631712751617",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911704513286145",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911771836059649",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911695877214209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集成计划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130500991352832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集成计划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911589379641345",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集成计划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911723391848449",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集成计划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911719969296385",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED平台计划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899047436566529",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899120950132737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899303431716866",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911729083518977",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD平台计划2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911555208646657",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911648028594177",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911652055126017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台计划3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "7005911727082835969",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销运营中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911557087694849",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD产销运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911652956901377",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端产销运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911705465393153",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产销运营部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356529458876416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356303998259200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营流程数据运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356382419161088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356784975876096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356025098014720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133432446457479168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划推进中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692007166774497282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产品企划推进部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462295875911682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462353383981057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462357624455169",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品力提升平台",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1692008427209080833",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划推进管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1692009630072459265",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大产品企划推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1692009832451850241",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小产品企划推进部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356027090309120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356005359620096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992181116928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED模组运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356025462919168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "效能提升科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356915641028608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成本改善科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356067993161728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试装备部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663440066588673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造与交付科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991799435264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外售/客服科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036980477952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356734556147712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检测技术企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356222402269184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD中大模组竞争力提升部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355987189895168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357429745258496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大整合推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356550824660992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD中小模组竞争力提升部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356350479536128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356635256000512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357022348316672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小整合推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356957357576192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED模组技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356061546516480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "统筹规划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356405575913472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356468628885504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356040369475584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机生产技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692007152799105025",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机技术企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356222918168576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356773617700864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺与设备开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356055099871232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692006009377280002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462415343599617",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356019943215104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660318145531906",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺品质企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663302241722369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356020354256896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel运营管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660335161749506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营规划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663458609610754",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成本管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356065216532480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel设备部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660463486554113",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694660508994641921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694662224196653058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663262119010306",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备4科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357368026075136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663339084599298",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663373955969026",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺品质企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356168425771008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692007167126847489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南MES 1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1692014655846895617",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华中MES部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650372720939010",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南MES 2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650388088758274",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北MES部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356001559580672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel设备技术研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356014188630016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机MES部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356341696663552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业软件推进开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663273221443585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业软件推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663294859857921",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造运营开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663356310536193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造平台开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663443673718786",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EES分析改善科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356349003141120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module设备技术研发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357322626928640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术推进部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356252097941504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692017541666459650",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "绿色发展部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1740561475040407553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356029690777600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356061705900032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程建设管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356620487856128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357027641528320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356047227162624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356186134122496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356670798532608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356207558627328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造企划与运营中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356822317764608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产制造运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660455894794242",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产制造运营1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663429287301122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产制造运营2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356943617036288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智能制造企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356291683782656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PTD流程数据运营Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357558078377984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1692007218138038274",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营标准1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663331866091521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营标准2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462794466701314",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精益推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356412907556864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营标准3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356273014935552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD制造中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020263727366144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B20项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019889331208192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033019950312194048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033019955982893056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020007799324672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020045724221440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020056545525760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019928564727808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033019963545223168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020377170706432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工厂建设Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130637327204352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020098530508800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020123067187200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020141010419712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020296916893696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020329666019328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020352202014720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020375253909504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "自动化组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020392270200832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020403796148224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020434603311104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1069932862901321728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1070030402082570240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1081273927088472064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694648426815471618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1864244427137118209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMVT",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864244460251131906",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244482560745474",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244497173590017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244545122873346",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244579100934146",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244613162889217",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244651997949954",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244685883715586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244716430827522",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244739604361217",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244770814177282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244806562340866",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244887013175298",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864244961537572865",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245037437710338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355978897756160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003755188550369280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462485237473282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356163329691648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356176172650496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357112001564672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357231153352704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module NP科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1909462652451790850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1909462737700990978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355995272318976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355998925557760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356136066715648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356194501758976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356371513970688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356419358396416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356950525054976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357192582533120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357486922010624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造4科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356024489840640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356103334367232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158661431296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356368334688256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356386839957504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356508156006400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356577211027456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357499471368192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356025597136896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136213786591232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1自动化技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356862415310848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356904043778048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356150998437888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356046161809408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356185337204736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356498647519232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356509464629248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356230916706304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载推进部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356797017722880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357278779674624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356234305703936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663078341423105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OPM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043083190272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067158495232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357200908226560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357271594831872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF/Cell技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356339289133056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356267935633408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356410973982720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356953674977280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356428065771520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356197945282560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356461045583872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356823387312128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357258273722368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357301315670016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF保全技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356817427206144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998178971648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356028604452864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357334513586176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1技安环保科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356892777877504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993451991040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356064495112192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356342816542720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356829485830144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357184365891584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356003002421248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356147131289600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356169025556480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut自动化科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356187514048512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356233357791232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357287260557312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356010954821632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754202456915968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356013374935040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356002763345920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF/Cell FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356592415379456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357392424341504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356071268913152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992420192256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356450782121984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356074439806976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998749396992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356068513255424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356095272914944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356541324562432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356086120943616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356018164830208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022539489280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356376081567744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356862033629184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356871072354304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356975497940992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356302513475584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001723158528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356077300322304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356192140365824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging&Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356358754897920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357345775292416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356332339171328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356114256334848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357512465321984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357513903968256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356411758317568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355994613813248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018097721344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356052704923648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356111240630272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356415566745600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357223716851712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array 制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356672425922560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356539722338304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357373566750720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357408387862528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356014268321792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356063438147584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356079032569856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356221626322944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356401306112000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357394336944128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357478701174784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356176051015680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356253855354880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357097564770304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357501526577152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356074687270912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754656779730944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356142727270400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356046438633472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356419744272384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357275600392192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356235396222976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356105427324928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356511633084416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356708752789504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357184525275136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357439597678592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356334889308160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356709692313600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356904874250240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357274786697216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357284181938176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356372927451136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356676402122752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT NP/FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357017474535424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV&Maker NP/FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357160680656896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC NP/FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357324581474304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module NP/FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356551588024320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469594295468032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356819738267648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357168540782592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356726670856192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356208611397632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356386277920768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356886754856960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356234792243200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356406389608448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356935979208704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357308416626688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356870426431488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357418009595904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357315328839680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356046832898048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356076734091264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356148897091584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356413872246784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356444155121664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357139843354624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356156878852096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739780606853120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356045478137856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356103661522944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356431630929920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356800322834432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356103418253312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984497152000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF ITO&Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356003291828224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356456557678592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF photo科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356109881675776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355985998712832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356857063378944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356111886553088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356030869377024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG TEST科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041409662976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL&COG制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041774567424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356170694889472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356380758216704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356217830477824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462331703615490",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国产化改善科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356247475818496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356335073857536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356244451725312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356165795942400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356723944558592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356828953153536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356279075704832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356293831266304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355977463304192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module PI&PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356288655495168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356468129763328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356299002843136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001169510400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356015044268032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042286272512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357058352222208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356935425560576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355996052459520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356464304558080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357083161530368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务(虚拟)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357299973492736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356238244155392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356271047806976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检测技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356418322403328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356161006047232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003755099228471296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000196431872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356020761104384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357048508190720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357324090740736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356054579777536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357070855442432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357248614240256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356244594331648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell 技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999168827392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356013861474304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI/OA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356021490913280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356794215927808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356305810198528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Semi Sensor部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356684023173120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Semi科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357416801636352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356329738702848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999068164096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356186004099072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test/Wet科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356389302013952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462327425425409",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略产品技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002637516800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel/模组 FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356122502336512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356498752376832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "良率管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356850285383680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM模组科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356603526090752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356084741017600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356148611878912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158225223680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356779154182144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356179091886080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356559011942400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356964987015168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357233527328768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357347989884928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357511026675712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PVD工程科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356945479307264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356294846287872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356472500228096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357259125166080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "998651557618647040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356812536647680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357088437964800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357439429906432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357541766729728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356208414265344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356056551100416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Touch营销BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356028025638912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务开拓Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356216089841664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356406561574912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示业务推进Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356246339162112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136209483235328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Touch整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355978528657408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356254396420096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TFOS技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356385023823872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TLCM技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356538669568000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357152073945088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sensor部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118135326083121152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "化金/真空科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136221143400448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sensor整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355983062700032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sensor制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067632451584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "触控技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356263921684480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "网印技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356217507516416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739772667035648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289851252867072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864246038387388418",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356451826503680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356512539054080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array/CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356545934102528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356762175639552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356018932387840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356178055892992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ITO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356408922968064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356959089823744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356020178096128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356205125931008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP&FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356261585457152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356536253648896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356821147553792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging&Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356135089442816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007549046784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036267446272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356696232792064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356703065313280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356264567607296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356691468062720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356921626300416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356514241941504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356299409690624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356912172339200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356797156134912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356044555390976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356073810661376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Slim科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356081603678208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI/OA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357135732936704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356855532457984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356388517679104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357077226590208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356952450240512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462305698930690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PECVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462323080228866",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462340440391681",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1840384594650767361",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356063052271616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356303658520576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet Etch科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357200623013888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356073525448704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089073733632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356242279075840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356260872425472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739341530333184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356008375324672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356051782176768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Repair科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356094480191488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Track科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356391738904576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356434294312960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PECVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356579756969984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356706592722944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Exposure科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356920489644032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357057425281024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357346106642432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry Etch科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356204861689856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356120619094016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356208946941952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356425662435328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999126884352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356003673509888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356605577105408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356680961331200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356736787517440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357076324814848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356908984668160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356194682114048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356268095016960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356438538948608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356796245970944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356913124446208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357018195955712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357053491023872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356218493177856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356218908413952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356228697919488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356276991135744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356382322692096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ITO科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357130943041536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356149719175168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356276257132544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356734929440768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357469461123072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357253412524032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992525049856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356381668380672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357397860159488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356275594432512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356465025978368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356806148722688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357146524880896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357166510739456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357438372941824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462349093302274",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356109520965632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356337212952576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356547079147520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356300131110912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 12\"扩产项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978939699200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012494131200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356214781218816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356599952543744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357249289523200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357393988816896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356518566268928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17扩产项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982928482304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991837184000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356007356108800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012875812864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089367334912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117645332480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356320469291008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356428850106368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356472978378752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356672304287744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356757570293760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356808417841152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357065381875712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质保证组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357132880809984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357140904513536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357147011420160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备采购组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357196734894080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357230830391296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357346605764608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356795432275968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754997638234112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1752976271899570178",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356039165710336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356150717419520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356215821406208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357196260937728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357516215029760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array/CF制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356185010049024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356008752812032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356281034444800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356985690099712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营改善科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357335012708352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357454047055872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356266127888384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356341025574912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356617153384448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357310249537536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357357292851200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356290899447808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356189464399872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356665538875392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356786766843904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356925157904384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356397199888384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356049861185536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357259955638272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356421682040832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356130962247680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356272520007680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356718873645056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357304192962560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356622677282816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356191368613888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357466831294464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356786372579328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356289179783168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356407501099008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356480893030400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356868476080128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356060665712640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356069444390912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF ITO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356301318098944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356677119348736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Photo科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357447747211264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356066630012928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356110473072640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356312009379840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356429235982336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356742844092416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA&Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356747487186944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356802629701632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754571916378112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462282873536514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module生产1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462291580911617",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462314456649730",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程技术1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462344819212290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356029124546560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356983613919232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1784462287227256834",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module生产2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462300321845250",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462310069436417",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程技术2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1784462318751604737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356014146686976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356248125935616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357176300244992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357331267194880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356016822652928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998489350144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array NP&FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356209689333760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell NP&FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356827904577536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF NP&FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356019007885312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356165724639232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CUT科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356187811844096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356253599502336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356301175492608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356887023292416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357116401389568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356078046908416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356008861863936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356143679377408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356810905063424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357306105565184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356083512086528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020283176353792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1820378955862122497",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356048728723456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357383171706880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ITO科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356147517165568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356582235803648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356774116823040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356810284306432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework工程科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356274835263488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356004210380800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022451408896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356933596844032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356947383521280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357020054032384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356613424648192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356141833883648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356633448255488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356956871036928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356557409718272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356770044153856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356859554795520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754085310005248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005082796032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356235480109056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356567140503552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356918547681280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357364695797760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356017011396608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999626006528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356077816221696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356130177912832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356815250362368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EHS管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357013540278272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356019859329024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356381785821184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356393269825536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356035386642432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356058291736576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356221685043200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "真空设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356345995825152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356411863175168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光刻设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356562585489408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357046813691904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光刻工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356073378648064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356182908702720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356267784638464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356853405945856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CUT科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357249117556736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357458778230784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356083646304256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356087433760768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356477076213760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356599516336128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356784841658368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging&Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357044703956992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356591509409792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356497754132480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357135116374016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356597914112000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356442313822208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356764599947264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIM科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356898196918272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357292511825920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357081047601152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356038897274880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "良率1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356906539388928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "良率2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357318130634752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356089035984896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117192347648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356141062131712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF 工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356141313789952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF 设备技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357374594355200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M1整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355977673019392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M1支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022879227904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356083700830208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356952307634176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357395121278976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M1运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356304233140224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356733172027392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging&Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356941603770368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357178984599552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357241148379136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356986096947200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754855505854464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020081908482048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019915272978432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EN科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020023339220992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EV科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020191807635456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "阳极科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020413728260096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "黄光科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020092180332544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020111046311936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020185369378816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020210921078784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FM微显项目部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1058428386113748992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428404371554304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1058428407479533568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355980151853056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019951629205504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020056306450432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "阳极 PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020120005345280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EV PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020123503394816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EN PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020153593331712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356033075580928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356190269706240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356297690025984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合&Bonding科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356488744767488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "检测科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356988470923264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357039993753600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT动力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357536477712384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739837842325504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356008446627840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356316597948416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356359174328320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Photo2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356533992919040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357122252443648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF Photo1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357413043539968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF设备技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356041552269312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356169549844480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357099368321024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356346306203648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356070597824512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356112175960064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356789333757952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356989615968256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356541110652928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356172871733248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356213975912448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356561645965312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356037534126080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356304384135168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356310893694976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356407593373696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356416225251328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework&FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356656110080000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357012357484544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357422442975232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357496711516160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造一科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356598224490496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356026486329344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Inline科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158451716096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356451453210624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell 制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356681988935680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ODF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357058641629184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357463517794304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI&Rubbing科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356632185769984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356120119971840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356818354147328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357252607217664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module AMHS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356904593231872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356083767939072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356777115750400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356782383796224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357179798294528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357330923261952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357387252764672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357465942102016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356123605438464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356139694788608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356705493815296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357557537312768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739255844896768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352895251841024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MBL制造2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373648496066560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Assy制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373653407596544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373660013625344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352898808610816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MBL整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373661095755776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373664493142016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373665164230656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework工程科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352903820804096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373670293864448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373673678667776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373678867021824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373703244316672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352908371623936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373686462906368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373689902235648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373693928767488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT生产支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462782810759170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352915405471744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373681144528896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373699440082944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373700882923520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352919650107392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373617852481536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消防管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373621979676672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全环境科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352921734676480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373610847993856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373614664810496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体水处理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373614731919360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352925983506432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078352969331638272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373720164139008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373720252219392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352932853776384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373707681890304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373728754073600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1078352964202004480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MBL生产支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462425770631169",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MBL制造1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373635892183040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373638538788864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462748669124610",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1909462473245929474",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MBL技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078373622243917824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373627226750976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "POL技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373631546884096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373631630770176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373635732799488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "贴合技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373641894232064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Assy技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078373651369164800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462759930724354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462771557449729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AR/VR科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356240718794752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT产销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078352945021452288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352951518429184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物料控制科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352990944886784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352995164356608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356470247886848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356326643306496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357240326295552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工厂建设Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356495040417792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357017768136704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1712806425236996098",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方越南整机二期项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1712810466885181442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810478499151873",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810491006566402",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810503283351554",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810515526467585",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810543846465537",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810556823568386",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810569574252546",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810583566524417",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810598041010177",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810610284183553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712810647349248002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712811032931598338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712811047842365442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1712811059934527490",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1739122582319521794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "京东方玻璃盖板二期项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1739128779416264706",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128782951952386",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128786630356993",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128794037485570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128819887104002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "信管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128823590563841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128827189276674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128830729269250",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128841659625474",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128857199632386",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128870453633025",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128874018791425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1739128885192306689",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1909462826846728193",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大整机IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462837412143105",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小整机IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462849609252865",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "玻璃盖板IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356004537536512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "台湾京东方视讯有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356169830862848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驻外干部*",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356014603866112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光罩工厂建设项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356112222097408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356627727224832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "协调组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356641169969152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357090568671232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356068274180096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356387813036032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "建设商务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357059325300736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程建设Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356025697800192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10京东方视讯科技(越南)有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130304601456640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户推进导入办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1909462815639584770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1694649479900372993",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694662885491523586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355978335719424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356664393830400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357011363434496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安厂务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357197196267520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911578604474369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911765653655553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356044035297280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动终端工厂",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694663022288818178",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356176403337216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130512957702144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203073613434880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FATP制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356402803478528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPM管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357314305429504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211023472070656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品工程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211063955492864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试工程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981218276455485440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州NB制造部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356061169029120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BNJ京东方杰恩特喜科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356049391423488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1698894255902351362",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356348420132864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356898339524608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356131213905920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356618260680704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203319449980928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203711516741632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356996276523008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203131096371200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203318283964416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204394617868288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357010205806592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356654893731840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357260882579456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357263260749824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356241880616960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245215088640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356979537055744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203742881746944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356266274689024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981218322815127552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981218483486330880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356142676938752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新企划办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356300663787520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT工厂",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754571186569216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "墨西哥SMT制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1909462804956618754",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356221265612800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州SMT部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357101356421120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357235846778880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥SMT部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1694660092194111489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356471925608448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04重庆智慧电子有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754586575470592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356029854355456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1784462336057311234",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "WF科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356514678149120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357042564861952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357214636183552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TEST 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356152273506304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安动力部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1740561479071125505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357446971265024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006685020160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356115019698176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356296222019584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356526321537024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11墨西哥视讯有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754636336693248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356154769117184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安厂务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356576397332480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550695944749056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911624129449985",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "998953018428751872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754953686122496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356576867094528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密成型工厂",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356191486054400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "注塑部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754073175883776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "墨西哥注塑制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356027555876864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038645616640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州注塑制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356427973496832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356472303095808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模具制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356594650943488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模具工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357111670214656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模具制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356504674734080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356896821186560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模具设计部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356786901061632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机OEM管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020034584150016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与实绩科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694659956097331202",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EMS管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356950197899264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都背光项目筹备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357244814200832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02合肥京东方视讯科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003755165066461184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356103242092544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356266413101056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安动力部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1740561487682039809",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356785458221056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356033708920832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356311346679808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356894002614272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356931164147712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013651759104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356211195088896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356258972405760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357356445601792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IMS BG数字化变革管理办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357383675023360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01高创(苏州)电子有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754539771232256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356085336608768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "全贴合部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088574611456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984073527296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355994651561984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355995750469632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-7(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356006605328384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-6(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356065770180608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-7(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356069222092800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE培训",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356069352116224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-3(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356103149817856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小物加工",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356141213126656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-1(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356251284246528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE技术员",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356269420417024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-2(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356293369892864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-8(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356317914959872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-6(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356343923838976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-5(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356397023727616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临时线别",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356472881909760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE物料",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356538149474304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-5(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356566142259200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-9(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357035933667328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-9(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357056099880960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-4(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357124697722880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-8(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357240938663936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-4",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357307917504512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-2(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357455116603392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-3",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357556320964608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "KE-1(B)",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356089551884288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356763824001024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PM 科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356294770790400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981691162624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356209324429312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227020197888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356658857349120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356046556073984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材二科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356715316875264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资材一科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356051547295744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成品仓",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356113304227840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CQS仓",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356257860915200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机物流配送",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356298294005760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组外物料",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356393882193920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料仓",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356803011383296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组周转仓",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356687928070144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1698894260226695170",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356619112124416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机制造科",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006311727104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SEEWO试产线",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356231432605696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "周边产品线(B)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356240785903616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SEEWO-2B",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356314593071104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "临时线别",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356337301032960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SEEWO-1B",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356504871866368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小物加工",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356563499847680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SEEWO-1A",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356670546874368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "周边产品线(A)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356900566700032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SEEWO-2A",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356788507480064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环安动力部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357367841525760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981205064687292416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356170640363520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356955663077376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211046800789504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357493188300800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01改造升级扩产项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356075349970944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356334079807488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356374378680320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356418980909056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356456167608320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生管组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356592067252224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "现地支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356606030090240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356631036530688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357001603289088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357256017186816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357442399473664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED制造中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1070271369616293888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED革新中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1070277900307005440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1832760653690114049",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1产品工程中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356063299735552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B16项目",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1832760693661769729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1业务推进组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005661609984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041015398400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356049580167168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356051748622336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356053308903424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356107121823744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "自动化组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356173786091520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ITBP组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356240056094720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356252303462400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356265708457984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "法务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356452971548672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356531233067008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356552594657280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356864038506496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356915200626688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356065661128704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356162406944768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工厂建设Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356476304461824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356785982509056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356942753009664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357059866365952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357265139798016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357388796268544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行政组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357419804758016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "审计组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357458077782016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公共关系&企业文化组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356067192049664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003755019381506048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669203580661762",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669931258806273",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 Laser科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669953199202305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670000439701506",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 Lami科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670024049393665",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670045805285378",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670068282560514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670095587479554",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 Test制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670131062865922",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3 Test制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873670154576125953",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M3新品制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355997457551360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356166513168384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MASK运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356292984016896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356326806884352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356574031745024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356776893452288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356923043975168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IJP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357178829410304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Tension科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357191290687488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357556803309568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Inspection科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356168014729216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669864179286017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "良率管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669891534516225",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN&EAC YE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669907888107521",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL YE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356123894845440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP&TSP YE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356317197733888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356311682224128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356395589275648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356414803382272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357063502827520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356448282316800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979979886592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355999907024896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Exposure科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356087228239872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Implant科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356672061018112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356711017713664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356717724405760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Repair科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356747743039488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Track科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357071442644992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357232407449600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Flexible科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357328775778304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357399009398784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357534065987584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ELA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356605128314880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356005309288448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356605803597824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357159925682176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357251441201152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356698627739648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356015363035136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消防管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042319826944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357546971860992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356976638791680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 产品工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669979744960513",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1产品技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356801795035136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 PNL工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357409545490432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 产品整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357533189378048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 MDL工程科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357034255945728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356050981064704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149773701120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158338469888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356213531316224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245009567744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356421124198400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356424450281472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356546768769024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356560760967168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357069991415808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357215424712704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Laser科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357243820150784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Assembly科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357153655197696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 MDL技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984484569088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005883908096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Test制造2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356047084556288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精益管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356107411230720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Lami 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108904402944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Test制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356127460003840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356213065748480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Laser科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356238600671232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356522659909632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Assembly科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356746602188800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357032548864000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357355581575168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Lami 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357358932824064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357533717860352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 后工程制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357272567910400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356003530903552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356062095970304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC/TSP/MDL AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227477377024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/EVEN AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356549788667904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357382639030272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SPM",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999806361600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356719771226112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356746476359680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357424737259520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355996811628544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089505746944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356131012579328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356697918902272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356806580736000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357482425716736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013882445824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042584068096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356084137037824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356255306584064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356614888460288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357016224632832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LLO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357018476974080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "U Lami科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356092286570496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754564861558784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227286715559938",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1832760657045602306",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 产品工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1896170937133469698",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 PNL工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1896170947203997698",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 产品推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1896170952178475010",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 产品整合科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1832760660694634498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355982559383552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356011969843200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018072555520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067489845248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356085894451200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "后工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356123806765056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356175988101120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356182371831808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356219956989952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356436227887104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356453671997440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356669842231296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "前工程制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356750544834560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356850159554560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Laser科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356992644255744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精益管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357202036494336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Assembly科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356043641032704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356032396103680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN/TSP/EAC AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356095918837760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/MDL AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357195103309824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356060451803136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993464573952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356004856303616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356471241936896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356873756708864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356128403722240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356027484573696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356448970182656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aligner科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356585050181632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356693267419136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356781687541760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356856790749184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IJP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356886482227200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357097275363328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357521495658496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Tension科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356134984585216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356030370254848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356035357282304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042617622528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356183969861632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Implant科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356204022829056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Flexible科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356522269839360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Exposure科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356861614198784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356867314257920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Track科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356936121815040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Anneal科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357126929092608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ELA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357203777130496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test/Repair科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357449513013248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356149073252352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "998605342558388224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "998605753734397952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356274696851456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356002905952256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "良率管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356045314560000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN/EAC YE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356279147008000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/TSP YE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357305933598720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL YE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356481232769024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356226013564928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356469773930496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356930170097664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357428176588800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356530813636608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 MDL技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357005348802560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356011307143168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全消防科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356122556862464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357186932805632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356403281629184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356447296655360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356674195918848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356689278636032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357022197321728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357402616500224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356053417955328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356240311947264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cut科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356573696200704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356620160700416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "U Lami科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356791300886528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357191135498240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LLO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357477438689280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356710778638336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B15项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356014205407232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089757405184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356278501085184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356632080912384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356949090603008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂房建设组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356020127764480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356174675283968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工厂建设",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356477554364416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工程商务(虚拟)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356899081916416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356997593534464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357195896033280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357113167581184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754393088032768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1882732057512259586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载与新应用推进部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1882732071408005121",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1882732084875898881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1882732089611268097",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356058073632768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356426245443584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356619321839616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356758342045696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357193714995200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356138876899328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669771342622722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品整合2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669792708354050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669812505477122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品整合1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356150264434688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669828733284354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC/TSP/Module AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669844713500674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/EVEN AMHS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356053984186368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357372098744320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356183902752768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356196410167296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356197299359744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aligner科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356209567698944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Tension科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356235656269824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356246150418432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356470658928640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356796854145024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356884863225856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357358660194304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IJP科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356270154420224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356012158586880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Aging科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356076805394432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356288257036288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LLO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356482864353280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Ulami科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356563390795776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357040694202368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CUT科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357076761022464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356656676311040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356119646015488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356230677630976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造5科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356420260171776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356549465706496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357159128764416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357381942775808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356812293378048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TSP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007574212608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Thin Film科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356096438931456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356654541410304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356938785198080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357059715371008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357198152568832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355987101814784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355997784707072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356039383814144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应用产品科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356268480892928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356412160970752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Assembly科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356533246332928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356694823505920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356865351323648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357005524963328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Laser科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357191613648896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Lami3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357565460353024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLB科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357211075219456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993577820160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356001429557248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Flexible科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356003023392768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Track科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356145852026880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "ELA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356232346963968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356592985804800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Exposure科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356847689109504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356867444281344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Repair科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356974818463744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Implant科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357119182213120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry Etch科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357360476327936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357546447572992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet Etch科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357419989307392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划与客户导入推进办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873669723775021058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873669743895035906",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品导入推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357477245751296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356212650512384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "气体化学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356467362205696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电力技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356844119756800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "空调技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357279450763264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "水处理技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357552629977088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356081209413632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消防管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356532109676544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357491338612736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "环境管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357366201552896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED先导线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356277133742080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356401914286080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产运营科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356418787971072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356502829240320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生技工艺部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356054047100928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EV科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356058727944192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI&工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356116378652672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356250319556608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356258687193088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL PI&工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356270536101888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EN 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356323195588608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FMM Mask科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356363569958912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356082211852288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划与变革管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356024770859008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PTR流程数据运营Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356128915427328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356509078753280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356086079000576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客服中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550679293362176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356021830651904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356059591970816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356092534034432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356170522923008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356178764730368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356267642032128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356315369017344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356349913305088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356359899942912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356503408054272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356893633515520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357003117432832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357107480104960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357185120866304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357417313341440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12 RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357539120123904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2 RMA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1047550687543558144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大CS 4部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356037878059008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356041149616128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357480668303360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355997172338688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT CS 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356251561070592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356290832338944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356458206040064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356034447118336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中尺寸CS 3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356014461259776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356110192054272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356171718299648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356052671369216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小CS 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357205714898944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357245355266048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357250174521344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356116139577344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小CS 4部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003740027848491008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1752976279147278338",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356387104198656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356787941249024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356216026927104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大CS 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356364090052608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356491785637888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356674896367616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356940844601344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356233018052608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中尺寸CS 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356888478715904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356924730085376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357244315078656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356397287968768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT CS 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982064455680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355998107668480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356513591824384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356777367408640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大CS 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356113736241152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356733918613504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357146835259392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357328276656128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356920766468096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小CS 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1752976275561201665",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "5科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356090399133696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356094777987072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356594130849792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356773496066048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356945739354112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小CS 5部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754198652682240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355981036851200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356142303645696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356616922697728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357024827150336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550909250273280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "复判管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356282858967040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "越南服务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356351083515904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "维修管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356514338410496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS支持科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357452176396288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sorting科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357309922381824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小CS 3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356022233305088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356261652566016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356761135452160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356863505829888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357505230147584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大CS 3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984396488704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356115657232384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356706949238784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357481905623040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357555956060160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中尺寸CS 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356143964590080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357050907332608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357072667381760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357188455337984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356371329421312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机品保中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041647013881446400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组品质Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355986606886912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114313227677728768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694663055113396226",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356097030328320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机CS 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993976279040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356066739064832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356209630613504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356661403291648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356321702416384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密成型QA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356328614629376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01 QA 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356228018442240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357205870088192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356329407352832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机CS 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356332548886528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RMA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356891666386944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357553024241664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204760755441664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356457493008384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356012456382464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356618386509824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357070717030400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356530486480896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356120359047168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356559422984192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356618638168064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机CS 3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1739184169235394562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204562725572608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356638993125376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01 QA 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356004071968768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357460565004288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357541401825280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356978400399360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动终端QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203186687676416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203465793441792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203558848270336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357219023425536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356261296050176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357273993973760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357535202643968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204369452044288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357242402476032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11 QA部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357294516703232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机品质技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357376683118592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BNJ QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356032610013184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356564158353408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356670920167424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981204894960586752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机外包管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357004761600000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211921464168448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981218084004040704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356691346427904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示品保中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1729044785358045186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TM1 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993959501824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356599084322816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356785240117248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357358484033536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1774977989495373825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料品质技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873680442973122562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质体系部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993204527104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "GP 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356098871627776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质体系科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356319882088448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "GP 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355995079380992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 CS部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356481123717120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356911748714496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356007163170816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981347229696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356215691382784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356284704460800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 QA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356299485188096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356726788296704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356936864206848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357130204844032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356007804899328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "出货品质技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356040440778752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "过程品质技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356156211957760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356003723841536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356517605773312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357454235799552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203614057893888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356211325112320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356022388494336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356077510037504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356157994536960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356695414902784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356855138193408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357558455865344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356217444601856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356043473260544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356350156574720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356415466082304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357453526962176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357526226833408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357545344471040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356226479132672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT 品保部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739208356986880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356007892979712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356983764914176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CQ科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356263288344576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356225619300352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356301460705280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356340501286912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357330591911936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356294921785344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356047755644928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356104471023616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357102354665472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357247951540224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356300810588160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356049273982976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356249828823040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356350399844352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356703535075328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356492213456896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5 F1 QA部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356874033532928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998980083712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356000393564160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356273769910272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356597716979712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356922343526400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "M2 OQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356986403131392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356036053536768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356058870550528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356071923224576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088952098816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357079583789056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007398051840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356150201520128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356293910958080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356972318658560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357167341211648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发品质技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357186450460672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356448559140864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356556755406848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356625407774720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357040945860608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357243367165952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078352937098412032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352940990726144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352982099099648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1078352986448592896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466402528952321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1896170926643519489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1896170931789897730",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357249629261824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356230337892352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356362471051264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356397661261824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356441084891136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357293350686720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356034870743040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356844392386560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357444920250368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357458597875712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357372941799424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9 QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356108224925696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356307219484672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356577768869888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203953951707136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203093666402304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包品质技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356112129822720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356145789112320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211157748518912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356608248877056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289834484039680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付2中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300098784788480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1721463956998062081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721466382991884290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300110625308672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED MBL采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356384763777024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356525486870528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357138887053312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357448120504320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300111602581504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PANEL材料采购部(OLED)",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357213856043008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357276611219456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355996836794368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Micro OLED采购部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289835071242240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付1中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1041646696884338688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组采购Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300090371014656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357027045937152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357156452798464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357234492018688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300092182953984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300132611850240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356045528469504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356715774054400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300094259134464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300132897062912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356666612617216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300099070001152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD MBL采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300128300105728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356480431656960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300101284593664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PANEL材料采购部(LCD)",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356128345001984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356390438670336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357460388843520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357567725277184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300103058784256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356180266291200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356588237852672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357315974762496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300106972069888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新产品采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356607087054848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356761802346496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357531994001408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114300110155546624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356098196344832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245147979776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356567249555456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356451730034688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "实验线采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289838544125952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备与备件采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300111065710592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300128677593088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300136994897920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备与备件统筹科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356600392945664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356739291516928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357043739267072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西南采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357362812555264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华东采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356041858453504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付统筹1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289883272183808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356063333289984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357335184674816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356102159962112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PANEL材料企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356318724460544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356223358570496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "靶材企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356676968353792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特气企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357453694734336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "化学品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356486152687616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356208280047616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "GLASS/MASK企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356446663315456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell材料企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357426729553920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF材料企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357471063347200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356248436314112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356280350773248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356731456557056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356484944728064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357065088274432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略保障部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356098699661312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业绩与项目科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356394830106624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程稽查科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357247582441472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应商管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357369301143552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356672841158656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略规划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357030850170880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新技术新材料企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356916060459008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付3中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114290876474982400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114290877615833088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01&S10&S11采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356272226406400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356275246305280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357007039107072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356053380206592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付统筹2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356127346757632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356639358029824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356069989650432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356107956490240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357134415925248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972151202940719104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目采购4科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357229341413376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BNJ采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357383507251200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "移动终端采购部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357530207227904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "精密成型采购科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972150966767849472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMT采购科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357045748338688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子材料企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978910339072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "元器件企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007087673344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356775018598400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356030588358656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "芯片企划2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356655522877440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357220986359808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357317463740416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356183714009088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "芯片企划1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356093230288896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356793951686656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357058494828544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357126778097664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PCB/FPC企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006328504320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357101494833152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357142477377536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TOUCH/外包企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007179948032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TOUCH材料企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356311069855744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356753426321408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356973430149120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356129448103936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356016852013056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356411556990976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "外包企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357104690892800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包辅材企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1820378944046768129",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356073005355008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357249801228288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984434237440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务7部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1138550298621509632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S11物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356033142689792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S10物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356816294744064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S01物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356043515203584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982873956352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356225262784512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356283148374016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356292438757376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356046652542976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流统筹部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1721463928707493890",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "统筹2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1721463988073746433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "统筹1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356276773031936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1774978000740294657",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356576980340736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357300141264896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356381978759168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务6部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356212851838976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新项目科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356271127498752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S04物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356409896046592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S02物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356607900749824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BNJ&SMT物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356942446825472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1078352973534330880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOT物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089971314688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTO物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125211856896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357353706721280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356951133229056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356092022329344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356232716062720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356455760760832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357135888125952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356993676054528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务5部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356177493856256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357486443859968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357160231866368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务4部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356594759995392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357218562052096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357317124001792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357296697741312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务8部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357311683989504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光材料企划中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356140776919040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光企划2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356296524009472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356823957737472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357182604283904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356247899443200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光企划1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356126595977216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356511826022400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356745083850752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356672962793472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357202208460800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357239189639168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357344135319552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357116556578816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "偏光片企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356052637814784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357227282010112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "999345113048023040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与质量管理中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356376521969664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356510861332480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114290873132122112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114290877078962176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购交付科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203689052049408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示专用材料部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356208485568512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel材料科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357209267474432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光部品1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211359582621696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED专用材料科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211580450476032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光部品2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203983911620608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用材料部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356122368118784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子部品1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356562254139392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子部品2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981204580450701312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机专用材料部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357291014459392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构材料科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211613585477632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整机专用部品科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357270474952704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术与产品中台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020321944305664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD VR/AR开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019954909151232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357066082324480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357199297613824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357513174159360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020034143748096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel设计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694648883986243586",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺整合部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "994241903140540416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目推进部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1041646303068553216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组开发Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356462882689024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案产品开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356134544183296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "金融产品部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356558575734784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌产品部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356749194268672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "园区产品中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356670311993344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "园区产品经理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356916471500800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "园区产品开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356591127728128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD产品开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356034380009472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356168715177984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356166689329152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356322428030976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356204278681600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356486811193344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357552088911872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356305730506752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356157000486912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356845210275840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "972152477086388224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "972150941883043840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972152057173643264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356145734586368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB客户开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356139510239232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013031002112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356271777615872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Touch开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356497213067264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357444039446528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路平台开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356415285727232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356141510922240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357052966735872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357398027931648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光平台开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356445576990720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356258460700672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356526023741440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357008351924224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356690478206976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356010304704512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356711944654848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357506429718528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356033297879040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356291406958592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356154827837440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mobile客户开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355994404098048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356206350667776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357068275945472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356010124349440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356105922252800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356135303352320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356325498261504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356058325291008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356599839297536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356708509519872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981754077184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355989878444032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356903766953984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357271917793280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356007712624640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356821697007616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356205650219008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新应用2开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979174580224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355985524756480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356361208565760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356399573864448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356096002723840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356250600574976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356122309398528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356165129048064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357079869001728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357227613360128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356296146522112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC客户开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355991916875776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356112998043648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357301160480768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356061202583552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356563608899584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357418399666176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356556000432128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357568220205056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356089413472256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356726415003648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356318489579520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中小尺寸开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356284360527872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356071776423936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356260947922944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356310658813952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356571334807552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356658718937088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356733293662208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356749563367424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356927523491840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357077373390848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357181824143360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357315815378944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356724057804800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001312116736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356031771152384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245840039936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356314232360960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell/CF工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356500283297792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "先行技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356561331392512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356613898604544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356715652419584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356729942413312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet/Photo工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356963091189760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357021517844480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Vac工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357434426101760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "画质改善科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356897500663808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356188667482112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356443282706432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356982770864128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356385816547328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT客户开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998208331776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356449595133952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357101071208448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356039627083776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864246318801760258",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356193432211456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356869885366272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356076952195072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864246342319218690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357244579319808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357326137561088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357003872407552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550909082501120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新产品开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864246361550102530",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356651164995584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357221649059840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "972152383821844480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356617665089536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738010005933907970",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺平台开发Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356012108255232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356529802809344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学平台开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357439069196288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学平台开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356057801003008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356396222615552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356576028233728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356690121691136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357034541158400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357042262872064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包装技术5科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356084095094784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356258599112704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发管理2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979954720768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356005615472640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356018189996032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356025236426752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356162109149184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356234511224832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356258527809536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356818526113792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8开发管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356696710942720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发管理1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356000854937600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B6开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356052415516672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B2开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108182982656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356122602999808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户平台开发管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357011657035776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355997566603264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学平台开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245349306368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学平台开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356981915226112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学平台开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356762305662976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1785219554159620098",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "G10.5开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356154295160832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356168828424192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356244158124032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356306263183360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组PI 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356611621097472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组PI 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356643720105984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356795042205696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356796598292480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356949522616320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357090119880704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356011290365952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B5开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356058153324544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356070954340352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356089157619712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356114117922816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356164676063232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356186201231360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI 科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356188214497280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356528250916864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356804563275776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356967251939328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356123483803648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355997923119104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356050570022912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356060556660736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356109986533376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356134300913664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356474828066816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356866018217984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356901409755136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357044276137984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357061359538176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357193396228096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356591958200320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356101144940544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108946345984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356813186764800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356836674867200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356915343233024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357387747692544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357390792757248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357546091057152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356900717694976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Touch开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013060362240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357142649344000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357263738900480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357088135974912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984463597568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355997554020352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088826269696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356403382292480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356538048811008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356861903605760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356968300515328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357108839059456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357335348252672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B4开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356069654106112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356147236147200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356158766288896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356262013276160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356295848726528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356362118729728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356887539191808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357258949005312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357534837739520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356008295632896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356021998424064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356069540859904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356314672762880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356410890096640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356787295326208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356912306556928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356958146105344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357450209267712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356886889074688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新应用1开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738010002339278849",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738020406339784705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738099824068276226",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738010026238496769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "7005911665753722881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光机开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355989903609856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356611839201280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738098411854618625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357338582061056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356022128447488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356108489166848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356204991713280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356841938718720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356032354160640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356091925860352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356152604856320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356952030810112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell&画质开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356210201038848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356152894263296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356908191944704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357063796428800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356106933080064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356286155689984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357105341009920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357175490744320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356003920973824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356064578998272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356575214538752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357153810386944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357215919640576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357337688674304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "972145324741103616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组平台开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "972150884823732224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路CAD开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972152728945954816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路平台开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020019073613824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "部品开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020146949554176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IP开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "981203995638894592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOD开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864246385885458433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864246406542409729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356668642660352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术洞察与数字化中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356017825091584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术洞察与管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980973936640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术洞察科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355993313579008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术推广科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356556432445440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356166131486720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RD数字化研发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356832803524608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EDA应用开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357041981853696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字化平台开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357058058620928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPD流程数据运营部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357022667083776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IPD流程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357085703278592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "RD数据运营科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356707892957184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产品开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738009955845492738",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019953441144832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020301748731904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Photo工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1037469627501772800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356326160961536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薄膜刻蚀工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972152089281040384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL器件设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033019953516642304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019872776290304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020193627963392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1037469775774613504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020187688828928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品设计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020016368287744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020111377661952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356538782814208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356791711928320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IC设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1033020366978547712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738009975457984514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356030311534592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356060380499968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN/EAC工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356117834076160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL 工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356119599878144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/TSP工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356248289513472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357208801906688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL PI科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738009990842765313",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001282756608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356056106504192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN/EAC工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356080093728768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356200231178240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356208816918528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356642046578688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP/TSP工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738009994277826562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738032190098374657",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356063723360256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL工程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356931478720512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDL工程科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738032197216231426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EDA/仿真部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738032218531684354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020282278772736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BMOT开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738019915828514817",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B7开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738032259149201409",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B11开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738079252470956033",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试中心开发管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738079262398873602",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B12开发管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356126126215168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738010009259880450",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发7部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738010016092512257",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发8部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355997423996928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022682095616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356335652671488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发5部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356388245049344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356479689265152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发4部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356526220873728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356568251994112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发3部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "980826756770435072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台开发3部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "980828423058362368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发6部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357126627102720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498069582446594",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "先行技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1882709048118358017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产品设计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355991174483968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT Panel设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357356273635328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT MDL设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355987168923648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel设计1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498211660312577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356520977993728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357286270701568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356003044364288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD工艺推进部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019875804577792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356163438743552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CF&Cell推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357266003824640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array推进科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356050330947584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产品工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993640734720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356077707169792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356130626703360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356403575230464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356255763763200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组设计2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356329570930688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356501784858624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机光设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356274902372352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1开发企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498153523175426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1技术企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355998166388736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1开发管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356287153934336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED模组工艺开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498231742627842",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1722498249576820737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356369051914240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357429049004032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356325074636800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP工艺开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498120325148673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1722498172707811329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356389817913344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357268876922880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356333505187840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组设计1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498096073756674",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356916869959680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357021803057152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356524727701504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品推进2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498272834347010",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356469396443136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPM&EPS 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357446098849792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356682202845184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Panel设计2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356278421393408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357173603307520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cell设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357139994349568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品推进1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498194748878849",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPM&EPS 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1882709146340569090",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPM 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357528768581632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EVEN工艺开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1722498291759009793",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356371241340928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356589978488832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357476373336064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356753552150528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED技术开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356088301981696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组平台开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356095759454208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统应用开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356123177619456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路技术开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357526054866944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "柔性模组技术开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356586526576640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PNL平台开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738009959284858881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "单元要素技术研究部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036644933632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台技术项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356346226511872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸平台技术开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356535372845056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小尺寸平台技术开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356663240396800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料及工艺开发平台部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357224195002368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "面板仿真平台部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356726272397312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺平台开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738010019414290434",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品工程部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356528666152960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980021829632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EN科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356105158889472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EV/MASK科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356245772931072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356392741343232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356483564802048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EAC科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357158491230208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DRY科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356626691231744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生管制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356648719716352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "先进工艺部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356996125528064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料器件平台开发",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738009962686439426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "AR/VR开发专项组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738010033314201602",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蓝光磷光开发专项组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738032170590679042",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1器件平台开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356009340014592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件平台开发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356032962334720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1器件量产开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356108313006080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件平台开发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356449175703552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料研究部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357349428531200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发企划",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738009966092091393",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术洞察部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356284633157632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356850545430528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端产品与技术开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356061580070912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738010022719512577",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356124511408128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工控创新开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356137228537856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356500396544000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IWB开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356835290746880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商显开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356065149423616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1739090717390798850",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356009268711424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042349187072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "模组开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356991604068352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357441942294528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357456173568000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357532358905856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新显示开发部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356106069053440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低功耗终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980541923328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低功耗开发1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357044565544960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低功耗开发2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357268222611456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356182661238784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端技术研发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1706538920549949442",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355991879127040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业设计1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355994563481600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "声学部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356030642884608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工业设计2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043850747904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356228836331520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品认证部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356306040885248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356620043259904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学与材料部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357085845884928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统驱动部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356421497491456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3D显示特战队开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356797407793152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目推进部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357502927474688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356518977310720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428364609552384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706538928879837186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "关键部件部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355998329966592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB软件开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550707734937600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备驱动科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738095158798462978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BIOS&EC开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911643897204737",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统集成科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355999516954624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356191909679104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB硬件开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550770934710272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件综合开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550922147758080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "7005911633382084609",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电源开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356563042668544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB测试部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550722574385152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合测试科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550806112337920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试认证科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357189717823488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB结构开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550784473923584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550916393172992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550926736326656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "散热工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356756693684224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1058428368875159552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1706538924735959041",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "关键部件部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002608156672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC硬件开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550831043280896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550843752022016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "基带开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550848193789952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "天线开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550852136435712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "射频开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356029514616832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC结构开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550881924382720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构项目管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550886227738624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550886370344960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "堆叠开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550890703060992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356072355237888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356140172939264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC测试部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550899112640512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件测试科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550899230081024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硬件测试科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738095372758372354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试项目及综合管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356192681431040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC软件开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550856443985920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BSP开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550857740025856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550860810256384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "应用开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1047550864971005952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "影像技术开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738098565919670273",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "软件项目及综合管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357296202813440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV终端产品线开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1738009970735198209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738010012791558145",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电子开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738010029522563074",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "测试部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738032181986603009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1738092228276006913",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357222454366208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357410250133504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD技术开发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469957090181120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "知识管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469864555446272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1118122981541806080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显COG开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136233818587136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136234489675776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统算法科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136235127209984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构光学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821863073955841",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821870573338625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356630340276224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357289223491584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COG工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1738009999017390081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "硅基LED技术预研组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355977832402944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355999365959680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学方案部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013005836288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示驱动科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356308624576512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FPGA开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356437238714368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动方案整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356527806320640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SOC开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356004365570048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背板开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356098544472064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薄膜科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356197047701504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "刻蚀科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356649629880320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356013840502784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光刻工艺部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355993716232192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Track科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038213603328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "彩膜科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356269080678400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Exposure科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356031087480832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356589206736896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357331770511360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356050725212160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "薄膜工艺部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356001412780032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "先进器件技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356165858856960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Sputter科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356225053069312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CVD科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356625290334208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LTPS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356056249110528",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL工艺部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356079770767360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED封装&Mask科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356114491215872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356528347385856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "溶液制程科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "972152102971248640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED封装科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356060862844928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目运维部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356082039885824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "传感技术研究部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1037469975054385152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "声电器件设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984090304512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光电器件设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356097428787200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED设计部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1785227282038820866",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电路设计科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227291354357761",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Array设计科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356102231265280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356050196729856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构光学开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356837664722944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "算法开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357132713037824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BSP开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357529624219648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SDK及应用开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356268246011904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356522060124160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生态分析科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356830865756160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新合作科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356293223092224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "刻蚀工艺部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356166810963968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Wet科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356227884224512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Dry科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356411963838464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "数字曝光机项目组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356595288477696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学设计研究部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356354954858496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "纳米光学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357217568002048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "几何光学科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357320093569024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示光学科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356606264971264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL生技部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356505853333504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "蒸镀科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356789048545280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mask科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357164501667840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "封装科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357514080129024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cutting科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356690717282304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE&机理研究部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356115606900736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356208095498240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合分析科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356436802506752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "机理分析科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356719993524224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥京东方卓印科技有限公司",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356006949261312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356183655288832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356502728577024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356346553667584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357064224247808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EL材料器件开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356557061591040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "人事行政",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356699919585280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357413743988736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "动力部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356939233988608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MicroLED技术部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357010650402816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合工程部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356126889578496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Module技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357050060083200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test&Repair科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357056989073408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP&FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357391908442112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学设计研究部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356101388210176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学设计1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356195411922944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学设计3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356839455690752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学设计4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357410615037952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电学设计2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357430613479424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "下一代工艺技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356634148704256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "L-CELL科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356945089236992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "微纳工艺技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357479770722304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运行保障部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357121107398656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产运行科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357504852660224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "新设备技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356977620258816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1104100619213340672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部背光业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754105564299264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆光科技公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003755028424425472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州光科技公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130170455031808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州背光模组BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356667464060928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355989358350336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356140294574080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356263560974336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356353247776768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州生技科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355999818944512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光部品制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022480769024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356048170881024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356129498435584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CS科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356207864811520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356042143666176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356043343237120",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356154588762112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356751467581440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356055552856064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356583737364480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357392092991488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356102365483008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356900990324736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356435590352896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆背光模组BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981204629679247360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356472022077440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆环安科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1104100619360141312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部背光业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739767331880960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥光科技公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003754259432341504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "南京光科技公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1003754900045168640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清光科技公务车Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694649472623255553",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清背光模组BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355982295142400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356029820801024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356067527593984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355983805091840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥背光模组BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149375242240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356195063795712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357282516799488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥生技科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203072631967744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛生技科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203894812020736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清生技科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356224923045888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛QA部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356037760618496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356542633185280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "QA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356306984603648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356478544220160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛背光模组BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356738100334592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357109828915200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357349269147648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "合肥制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203892207357952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清环安科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204581876764672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "福清QA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114290876449816576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部背光采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356057083777024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部物流关务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357294726418432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204532329451520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "采购1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1118123001221480448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智造技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136212251475968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "自动化技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136220946268160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CIM科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750814929163862017",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品保环安部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356022279442432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356273170124800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "标准认证管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1806163554311794690",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "珠海晶芯科技项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806163590017855490",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂建组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163621932314625",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "支援组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163630362980353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163634041356289",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "自动化技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163637698752514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质客服组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163641331085313",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163645034655745",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163648713060353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造准备组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163686763757570",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "研发组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806163690379276290",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销组",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356068446146560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "瑞晟科技",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118123006267228160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136196556390400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光NP&Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136217951535104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光&F1 FA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1118135348887552000",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销企划与管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750814943592235009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光产品线管理办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750821851912880130",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光中大尺寸管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821855675236354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光中小尺寸管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1750814954166042626",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750821866836226050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM采购企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356068899131392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料采购企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356743779422208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备采购企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1806163716312596481",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技安环保科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984237105152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM技术与运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356034510032896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356005405757440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356006705991680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356149429768192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356937845673984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产技术2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356207428603904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356598325153792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光品质科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356733796978688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光CS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356403868831744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356020056461312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088050323456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356999279644672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356103191760896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链统筹部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750814979143188481",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "通用材料企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821419471810562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "流程与稽核科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356116877774848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356287296540672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "晶芯科技",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750814964882554881",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显产品线管理办公室",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750821330808418305",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SMD管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821423842279425",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "COB管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355980936187904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "整合部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356044920295424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NP&BP科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356395954180096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FA科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357132385882112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Test科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356035093041152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356371157454848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Rework科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357199129841664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "组装科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357491128897536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "固晶科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356229884907520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "厂务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356431358300160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产销企划与管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356461238521856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM技术与运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356777757478912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356715430121472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显品质科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357089033555968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SQA科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356815795621888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356095683956736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造支援科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356127644553216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357087980785664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显安装售后部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356901271343104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安装交付科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357487291109376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显CS科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357420974968832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356346713051136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "设备采购企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356970645131264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM采购企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357357796167680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "材料采购企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356325829611520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MLED 研发中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118123001972260864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136226117844992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136230576390144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136230689636352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显光学工艺科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356100989751296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光部品开发部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356169998635008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部背光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806163701619896322",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部背光开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356476786806784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光器件开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118135351429300224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965355984102887424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学开发1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356001131761664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356022908588032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学开发2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356998050713600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357374934093824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动开发1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356641446793216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发企划与平台部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136196543807488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LED光学开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356024347234304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "包材技术科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356201309114368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发企划管理1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357264502263808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发企划管理2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356934720917504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部背光开发部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981204587341942784",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部背光开发科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356949946241024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1项目组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118187938958540800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PI科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118187941382848512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目推进科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694662862754201601",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750814994020319233",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1制造科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356190689136640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工艺开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356198951915520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356281793613824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "驱动开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356413477982208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "光学开发科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357318814306304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BP工艺科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203219973672960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1整合科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203768911597568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1技术科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356457400733696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部背光采购部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356353910476800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部物流关务科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357207694610432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显/背光器件市场营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118123005495476224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显国内BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118136200801026048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "渠道拓展与管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136205364428800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "西部营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136206131986432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "南部营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136209520984064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中部营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136216559026176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北部营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136225832632320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "东部营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821428221132802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821874302136321",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1118123010725773312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显大客户Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118123014202851328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "直显海外BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1750821436471328770",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "亚太营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821440426524673",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中东&拉美营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821844484800514",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北美营销代表处",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821848205127682",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821859383001090",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1118136222196170752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1118136225367064576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创意LED显示战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1750821432058920961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "XR&影院战队",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356121407623168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光中小尺寸BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356004323627008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356019033051136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356544461901824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356421774315520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场推广与营销部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1118135322345996288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场洞察Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356159856807936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场推广Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356267369402368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌营销Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356638548529152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "背光中大尺寸BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356043783639040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357218868236288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357328612200448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356833067765760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356601089200128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理2Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357484111826944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理1Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357169329311744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示器件及物联网创新业务前台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124410294232154112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356299237724160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "园区行业拓展组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1698894251032780802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356040134594560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357289710030848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356472688971776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营销管理&交付服务中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356101644062720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质体系Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356340857802752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356387016118272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356781532352512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌与市场推广Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1124410294265708544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "业务战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124420790184312832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案-品牌战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1689155018080542722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质&售后",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1689571097504301057",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650268387553282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌产品中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650284720173058",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650303439314946",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981211468747771904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981212648018284544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "渠道管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124420790796681216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统方案-智慧金融战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124425505425063936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130186108174336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "金融产品中心",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1689154929127723009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质&售后",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650245796995073",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650249769000961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356453462282240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357042413867008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124425509346738176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT器件-DELL战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130183436402688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130183490928640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130316144181248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650075030138882",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650104289566722",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650110694305794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域营销平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650120534142977",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650136862597121",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650141832822786",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650172451266562",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1124425509556453376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT终端-投影仪战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1133130185336422400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1133130316425199616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650154503884801",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650180336558081",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域营销平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650195918442498",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650205984661505",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650223848267778",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650231569952769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务BP",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650238100447234",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694650241976020994",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1710899033603751937",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸&车载OLED战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1710899349338390529",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899363104079874",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899377633148929",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899388274098178",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899402492776449",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899417080578050",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899429252399106",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899446184869890",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1710899459765960705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1785219559033298945",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VC战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1785227226393018370",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227231031918594",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227235708526593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域营销平台",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227240297107457",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227244944486401",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227249612644353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227255648256002",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IT",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227260303966209",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227265018425346",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227272500961282",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1785227277139902466",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1864246008494567426",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC终端大客户战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1864245768844619777",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245814856134657",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245839543918593",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245868077768705",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245892735971329",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245916878389250",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245938252562433",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245957907070978",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864245982821228546",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PDT管理",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1864246192301551618",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "1124410295381393408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355979514318848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356017443409920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356084967510016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356151107489792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356081905668096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356106018721792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356174130024448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356087895134208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357000118505472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357072969371648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356355642724352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356074842460160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357379161952256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356600971759616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356358247387136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356512836849664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356067447902208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356044182097920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356398558842880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357469284962304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356319798202368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356063538810880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356247043805184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357251286011904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357485521113088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356442506760192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第四营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356714180218880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356874373271552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356489801732096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356335975632896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356679271026688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356565794131968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356085063979008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B3 FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357230025084928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B8 FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357286937595904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B18 FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356754290348032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S专项组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356922620350464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356426618736640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356979675467776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357246739386368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第三营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356286688366592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357276439252992",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357402264178688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第五营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356457803386880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357477786816512",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356143415136256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1产销协调小组",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1840586362756136961",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 IT产品战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1873681761372893185",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873681846584410113",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873682128735285249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "开发",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873682156254113794",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873682207869136898",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "制造",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873682345060708354",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划与运营",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1873682531061305346",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "财务",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356914907025408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPI部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357403711213568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略规划部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356292287762432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356047684341760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356118266089472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356710187241472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356130454736896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第四营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356603073105920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356729816584192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356160947326976",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356341273038848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357328108883968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356161064767488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355984451014656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356029728526336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356572010090496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356597301743616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356249061265408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第三营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356548463267840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356878181699584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356564384845824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356259685437440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B17 FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356291042054144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B9 FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357131790290944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B10 FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357388460724224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "B19 FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357202367844352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999726669824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356167486246912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356429932236800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357378310508544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第五营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998761979904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356411183697920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357509801938944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356203720839168",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357069840420864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203654528733184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356336873213952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mobile SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356084791349248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355992218865664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356007947505664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356553739702272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356086196441088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OPPO BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356013823725568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356885639172096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356169759559680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端市场部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356214634418176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355996706770944",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 3科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356002935312384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357283670233088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356295529959424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "方案公司BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356301028691968",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小米BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356072833388544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356908481351680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356551265062912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357026735558656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356348256555008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "资源企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356933731061760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357410984136704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD产品企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357097858371584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "vivo BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356474626740224",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "LCD营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356681305264128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OLED营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357219526742016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品牌客户BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356661290045440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356816064057344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357284962078720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730504182340997122",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "终端分析科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356037647372288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356462136102912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "部件研究科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356373275578368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503097674170369",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小尺寸NPO部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503330353184769",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPO 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806503339295440897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPO 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356011864985600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸BPM 1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730504128943312897",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356235316531200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356073311539200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小尺寸TPM部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965357357963939840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MQO科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357427497111552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MPO科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356730525421568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸NPO部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356031955701760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPO 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357190531518464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NPO 2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356872049627136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "小尺寸BPM部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355983289192448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356036397469696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357224647987200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "中大尺寸BPM 2部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356037672538112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357280264458240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356813652332544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MDS SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355991027683328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020220068855808",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020299068571648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356045415223296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020045871022080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694661960089718786",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356098829684736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "系统整合BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356378958860288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020431478554624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1694659543407181825",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356497003352064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "VR/AR BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020288960299008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020433420517376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356906086404096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SC SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503077881311234",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503236274892802",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806503344018239489",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1806503083296129026",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1806503227844395009",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1806503302976909314",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356229108961280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FOD BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356045817876480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356197727178752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356308217729024",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356097210683392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356419937210368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357251927740416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357489400844288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357544602079232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新 BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356025433559040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356442036998144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356991209803776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特种产品SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355982949453824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特种产品销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356125069250560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356198410850304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安全办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356206732349440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356252521566208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "结构设计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356262365597696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户服务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356315608092672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "SDT财务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356383711006720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "生产制造部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356391822790656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "供应链管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356508462190592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特种产品项目部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356590821543936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "品质管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356827288014848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "保密办公室",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357031710003200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "专用产品销售部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357096734298112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "电气设计部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357168377204736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "经营企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357497990778880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "特品 HRBP",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357084356907008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355980609032192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第四营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355998883614720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356981055393792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356253922463744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356850029531136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "战略企划科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356962470432768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356255629545472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356015757299712",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356675269660672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356360742998016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第三营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356043309682688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356268921294848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357559210840064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356544348655616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356247756836864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356539093192704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357053948203008",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356217700454400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 4科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356279214116864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 1科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356295928418304",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356894157803520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE 3科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357295179403264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356886205403136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356910347816960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357313642729472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "车载 SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033020039470514176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1033019939293757440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1033020171389763584",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1741753229504577537",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第二营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357366033780736",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204618761474048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "第一营业部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356511247208448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356738465239040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357436284178432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730496500276088834",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "H BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730504212904804353",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730504266306768898",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356118962343936",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356040335921152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357406521397248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356375725051904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC/NB BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355999613423616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356453562945536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356387636875264",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户技术支持部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356112268234752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356180656361472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE4 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356268770299904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356892631076864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356758736310272",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356100163473408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356512643911680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203497456242688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356063865966592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981218030371475456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售管理2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356002310361088",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外营销平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356052566511616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOES",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1007650468312121344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEIMEA",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356516284567552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356869059088384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965355983515684864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356017279832064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356038117134336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356375368536064",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357293010948096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357314473201664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEID",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356624493416448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEJ",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1007665274045857792",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1007665850171260928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1007665956303929344",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356802755530752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEEU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356105205026816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356242568482816",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEG",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356182547992576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357367065579520",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新业务Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357512113000448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "器件业务Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356765371699200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOER",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357462255308800",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEUK",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356875216326656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEK",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355978822258688",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Mobile/TPC营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356016654880768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "OEM营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356148435718144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356191792238592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356225124372480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT/NB营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356237698895872",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV营业部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356358587125760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "客户战略企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357529452253184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356905910243328",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOETW",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356024796024832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356062284713984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356070102896640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356636438794240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356054470725632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外客户FAE科(MNT)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356831448764416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外客户FAE科(NB)",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357054258581504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "台湾客户FAE科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356776763428864",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356916739936256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357377148686336",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357097417969664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEA",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356330422374400",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美东区",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356416518852608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "BOEB",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356552120700928",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HP Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356838646190080",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "F1 Team",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356887157510144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357246215098368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售科",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357299470176256",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美西区",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356239938654208",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357459499651072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "技术支持Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357451815686144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理科",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "991357546012872704",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Microsoft Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "991358275410726912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Google Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "991358306586988544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Amazon Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357099817111552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台运营部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356014704529408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "智慧终端业务",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356310977581056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "低功耗终端产品线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356276924026880",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPD零售价签BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356514892058624",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357350586159104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "零售市场 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356353507823616",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPD创新应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356038414929920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新应用Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356862947987456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356770182565888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "EPD背板BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356040650493952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356142513360896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "销售 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356161672941568",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357094175772672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356312655302656",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "MNT终端产品线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356065900204032",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203162012585984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356356691300352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "亚太2 BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356370805133312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203181541265408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204309314113536",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981203791653113856",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧美BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356015606304768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DELL Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356987216826368",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "HP Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "981205048295952384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "亚太1 BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1741753233807921154",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "K Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356088092266496",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "联想 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356532935954432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CN Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356344657842176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TPC终端产品线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1840384499725365249",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PDT管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1840384599583305729",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PDT 2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1840384604188614658",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "PDT 1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356111559397376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外品牌BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356671524147200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356836813279232",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356173513461760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356061068365824",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356534202634240",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356382616293376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国内品牌BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356461334990848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357316792651776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356603186352128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "行业应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356103061737472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356601798037504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357309091909632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356666855886848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357503892164608",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356407232663552",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "3D显示特战队",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356233777221632",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356346385895424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "消费应用BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356477172682752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356670672703488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商用BU",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356601206640640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "NB终端产品线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356104726876160",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "大中华品牌BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203187782389760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "创新Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203212100964352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "双A Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356339846975488",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "DHL品牌BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203672677486592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧美Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204788307824640",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "L Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356488530857984",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "CTE BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203174108958720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国内Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204831483990016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356569455759360",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981204525601787904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "Cost Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981204642589315072",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "企划Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356980489162752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203564162453504",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "计划管理Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "981203929779933184",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "项目管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356736162566144",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "IoT应用终端SBU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003739224010129408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003754945184268288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289872752869376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289874338316288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划5 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289877127528448",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划4 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289877223997440",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场企划Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357490210344960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289809649565696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "医工应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300115352289280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300119810834432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289813890007040",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "穿戴家居应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289874157961216",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300111745187840",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357047698690048",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289818122059776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "安防应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300120062492672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海大宇Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300120070881280",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300123950612480",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "1114289821842407424",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114300128434323456",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114300136785182720",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "FAE2 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356251493961728",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "工控应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289868839583744",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356118815543296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356911501250560",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356371681742848",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "商显应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289868529205248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356015480475648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356101950246912",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356871915409408",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "白板应用BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1003740023784210432",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289860618747904",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业4 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289864171323392",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业3 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289864485896192",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业5 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356069192732672",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "营业1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356886348009472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1114289881456050176",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1114289882525597696",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理1 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730504294202998785",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理3 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965357425446096896",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "TV终端产品线",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1047550666999857152",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华北BU",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356189682503680",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "华南BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356075907813376",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "C Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357459126358016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "S Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356392200278016",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730504240125849601",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划2 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356062427320320",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "产品企划1 Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356759243821056",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "综合管理部",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "981203635830525952",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "运营管理Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965357083614515200",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "海外BU",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1730504154763485186",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "J Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356254056681472",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "美洲 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356617539260416",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "欧亚 Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357151310581760",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "K Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "965356654184894464",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "显示事业数字化变革管理办公室*",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357359792656384",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "国内营销平台",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "1124430949413552128",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "平台运营部",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "1730512714410897410",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "区域业务执行组",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356042013642752",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "青岛营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356043439706112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356200822575104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356378317131776",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356050754572288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "成都营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356543245553664",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356615689572352",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357008062517248",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356167431720960",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "深圳营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356005862936576",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356142563692544",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356872573915136",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356264357892096",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "重庆营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356017304997888",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356517089873920",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357463689760768",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356497976430592",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "北京营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965356050083483648",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356322885210112",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965356808585613312",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ },
+ {
+ "organizationId": "965356671943577600",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "苏州营销中心",
+ "displayNumber": null,
+ "childList": [
+ {
+ "organizationId": "965355981452087296",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "交付Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357111510831104",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "市场与销售Team",
+ "displayNumber": null,
+ "childList": []
+ },
+ {
+ "organizationId": "965357527149580288",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "解决方案Team",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "organizationId": "992838182015864832",
+ "orgId": null,
+ "orgCode": null,
+ "orgName": "集团执行委员会",
+ "displayNumber": null,
+ "childList": []
+ }
+ ]
+ }
+ ]
+ },
+ "status": 200,
+ "timestamp": "2025-04-28T03:07:14.933+00:00"
+ }
+}
\ No newline at end of file
diff --git a/vue.config.js b/vue.config.js
index dd446eb2..9eeedbc5 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -46,6 +46,23 @@ module.exports = defineConfig({
target: 'https:' + process.env.VUE_APP_BOE_API_URL,
changeOrigin: true, //表示是否改变原域名
},
+ // "/reportsnake": {
+ // target:'https:' + process.env.VUE_APP_BOE_API_URL,
+ // changeOrigin: true, //表示是否改变原域名
+ // pathRewrite: {
+ // // "^/reportsnake": "",
+ // },
+ // },
+ "/reportsnake": {
+ target: 'http://127.0.0.1:32004',
+ changeOrigin: true, //表示是否改变原域名
+ pathRewrite: {
+ "^/reportsnake": "",
+ },
+ onProxyReq(proxyReq, req) {
+ console.log('Proxying request to:', req.url); // 调试日志
+ }
+ },
"/report": {
target: 'https:' + process.env.VUE_APP_BOE_API_URL,
changeOrigin: true, //表示是否改变原域名
@@ -53,6 +70,8 @@ module.exports = defineConfig({
// "^/manageApi": "",
},
},
+
+
// "/report": {
// target: 'http://192.168.31.211:18878',
// changeOrigin: true, //表示是否改变原域名