From d9d1f422c8697a5b47cb47c185c78df5eee5ee98 Mon Sep 17 00:00:00 2001 From: lixiao <470849175@qq.com> Date: Fri, 11 Aug 2023 20:18:39 +0800 Subject: [PATCH] feat: inint --- .eslintrc.js | 25 + .gitignore | 16 + README.md | 52 + env.d.ts | 1 + index.html | 14 + package.json | 46 + pnpm-lock.yaml | 4831 ++++ public/favicon.ico | Bin 0 -> 4286 bytes src/App.vue | 7 + src/assets/base.css | 71 + src/assets/logo.svg | 1 + src/assets/main.css | 1 + src/components/waterFall/index.vue | 130 + src/components/waterFall/waterFallItem.vue | 28 + src/main.ts | 17 + src/router/index.ts | 14 + src/stores/counter.ts | 12 + src/test.json | 27116 +++++++++++++++++++ src/views/ElementSort/index.vue | 110 + src/views/vxeTable/index.vue | 140 + tailwind.config.ts | 10 + tsconfig.app.json | 12 + tsconfig.json | 14 + tsconfig.node.json | 16 + tsconfig.vitest.json | 9 + unocss.config.ts | 15 + vite.config.ts | 18 + vitest.config.ts | 18 + 28 files changed, 32744 insertions(+) create mode 100644 .eslintrc.js create mode 100644 .gitignore create mode 100644 README.md create mode 100644 env.d.ts create mode 100644 index.html create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 public/favicon.ico create mode 100644 src/App.vue create mode 100644 src/assets/base.css create mode 100644 src/assets/logo.svg create mode 100644 src/assets/main.css create mode 100644 src/components/waterFall/index.vue create mode 100644 src/components/waterFall/waterFallItem.vue create mode 100644 src/main.ts create mode 100644 src/router/index.ts create mode 100644 src/stores/counter.ts create mode 100644 src/test.json create mode 100644 src/views/ElementSort/index.vue create mode 100644 src/views/vxeTable/index.vue create mode 100644 tailwind.config.ts create mode 100644 tsconfig.app.json create mode 100644 tsconfig.json create mode 100644 tsconfig.node.json create mode 100644 tsconfig.vitest.json create mode 100644 unocss.config.ts create mode 100644 vite.config.ts create mode 100644 vitest.config.ts diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..9c190ca --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,25 @@ +/* eslint-env node */ +require('@rushstack/eslint-patch/modern-module-resolution') + +module.exports = { + root: true, + extends: '@antfu', + parserOptions: { + ecmaVersion: 'latest', + }, + rules: { + '@typescript-eslint/indent': ['error', 4], + 'antfu/top-level-function': 'off', + 'no-void': 'off', + '@typescript-eslint/no-use-before-define': 'off', + 'vue/html-indent': ['error', 4], + 'no-console': 'off', + 'curly': 'off', + 'antfu/if-newline': 'off', + 'vue/v-on-event-hyphenation': 'off', + '@typescript-eslint/brace-style': 'off', + '@typescript-eslint/consistent-type-imports': 'off', + '@typescript-eslint/consistent-type-assertions': 'off', + 'no-prototype-builtins': 'off', + }, +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..deadfbe --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Editor directories and files +.idea + +# Package Manager +node_modules +.pnpm-debug.log* + +# System +.DS_Store + +# Bundle +dist + +# local env files +*.local +.eslintcache diff --git a/README.md b/README.md new file mode 100644 index 0000000..3ab362e --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ +# vue-project + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). + +## Type Support for `.vue` Imports in TS + +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. + +If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: + +1. Disable the built-in TypeScript Extension + 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette + 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` +2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. + +## Customize configuration + +See [Vite Configuration Reference](https://vitejs.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Type-Check, Compile and Minify for Production + +```sh +npm run build +``` + +### Run Unit Tests with [Vitest](https://vitest.dev/) + +```sh +npm run test:unit +``` + +### Lint with [ESLint](https://eslint.org/) + +```sh +npm run lint +``` diff --git a/env.d.ts b/env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/env.d.ts @@ -0,0 +1 @@ +/// diff --git a/index.html b/index.html new file mode 100644 index 0000000..55ee2af --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + + + Vite App + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..cea0111 --- /dev/null +++ b/package.json @@ -0,0 +1,46 @@ +{ + "name": "vue-project", + "version": "0.0.0", + "private": true, + "scripts": { + "dev": "vite", + "build": "run-p type-check build-only", + "preview": "vite preview", + "test:unit": "vitest", + "build-only": "vite build", + "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" + }, + "dependencies": { + "@vueuse/core": "^10.2.1", + "element-plus": "^2.3.9", + "pinia": "^2.1.4", + "vue": "^3.3.4", + "vue-router": "^4.2.4", + "vxe-table": "^4.4.7", + "xe-utils": "^3.5.11" + }, + "devDependencies": { + "@antfu/eslint-config": "^0.39.8", + "@rushstack/eslint-patch": "^1.3.2", + "@tsconfig/node18": "^18.2.0", + "@types/jsdom": "^21.1.1", + "@types/node": "^18.17.0", + "@unocss/preset-rem-to-px": "^0.54.0", + "@vitejs/plugin-vue": "^4.2.3", + "@vue/eslint-config-typescript": "^11.0.3", + "@vue/test-utils": "^2.4.1", + "@vue/tsconfig": "^0.4.0", + "eslint": "^8.45.0", + "eslint-plugin-vue": "^9.15.1", + "jsdom": "^22.1.0", + "mockjs": "^1.1.0", + "npm-run-all": "^4.1.5", + "tailwindcss": "^3.3.3", + "typescript": "~5.1.6", + "unocss": "^0.54.0", + "vite": "^4.4.6", + "vitest": "^0.33.0", + "vue-tsc": "^1.8.6" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..411061c --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,4831 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + '@vueuse/core': + specifier: ^10.2.1 + version: 10.2.1(vue@3.3.4) + element-plus: + specifier: ^2.3.9 + version: 2.3.9(vue@3.3.4) + pinia: + specifier: ^2.1.4 + version: 2.1.4(typescript@5.1.6)(vue@3.3.4) + vue: + specifier: ^3.3.4 + version: 3.3.4 + vue-router: + specifier: ^4.2.4 + version: 4.2.4(vue@3.3.4) + vxe-table: + specifier: ^4.4.7 + version: 4.4.7(vue@3.3.4)(xe-utils@3.5.11) + xe-utils: + specifier: ^3.5.11 + version: 3.5.11 + +devDependencies: + '@antfu/eslint-config': + specifier: ^0.39.8 + version: 0.39.8(eslint@8.45.0)(typescript@5.1.6) + '@rushstack/eslint-patch': + specifier: ^1.3.2 + version: 1.3.2 + '@tsconfig/node18': + specifier: ^18.2.0 + version: 18.2.0 + '@types/jsdom': + specifier: ^21.1.1 + version: 21.1.1 + '@types/node': + specifier: ^18.17.0 + version: 18.17.0 + '@unocss/preset-rem-to-px': + specifier: ^0.54.0 + version: 0.54.0 + '@vitejs/plugin-vue': + specifier: ^4.2.3 + version: 4.2.3(vite@4.4.6)(vue@3.3.4) + '@vue/eslint-config-typescript': + specifier: ^11.0.3 + version: 11.0.3(eslint-plugin-vue@9.15.1)(eslint@8.45.0)(typescript@5.1.6) + '@vue/test-utils': + specifier: ^2.4.1 + version: 2.4.1(vue@3.3.4) + '@vue/tsconfig': + specifier: ^0.4.0 + version: 0.4.0 + eslint: + specifier: ^8.45.0 + version: 8.45.0 + eslint-plugin-vue: + specifier: ^9.15.1 + version: 9.15.1(eslint@8.45.0) + jsdom: + specifier: ^22.1.0 + version: 22.1.0 + mockjs: + specifier: ^1.1.0 + version: 1.1.0 + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + tailwindcss: + specifier: ^3.3.3 + version: 3.3.3 + typescript: + specifier: ~5.1.6 + version: 5.1.6 + unocss: + specifier: ^0.54.0 + version: 0.54.0(postcss@8.4.27)(vite@4.4.6) + vite: + specifier: ^4.4.6 + version: 4.4.6(@types/node@18.17.0) + vitest: + specifier: ^0.33.0 + version: 0.33.0(jsdom@22.1.0) + vue-tsc: + specifier: ^1.8.6 + version: 1.8.6(typescript@5.1.6) + +packages: + + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + + /@alloc/quick-lru@5.2.0: + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + dev: true + + /@ampproject/remapping@2.2.1: + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@antfu/eslint-config-basic@0.39.8(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-HvxNu11NRpX/DHmcMcA2KenY/IIy3THEn5tpizg6vPIp3ZYSNkW3ov6sK2wxCd1S8Rwl/65566wplJ8xTYe0EA==} + peerDependencies: + eslint: '>=7.4.0' + dependencies: + eslint: 8.45.0 + eslint-plugin-antfu: 0.39.8(eslint@8.45.0)(typescript@5.1.6) + eslint-plugin-eslint-comments: 3.2.0(eslint@8.45.0) + eslint-plugin-html: 7.1.0 + eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.45.0) + eslint-plugin-jsonc: 2.9.0(eslint@8.45.0) + eslint-plugin-markdown: 3.0.1(eslint@8.45.0) + eslint-plugin-n: 16.0.1(eslint@8.45.0) + eslint-plugin-no-only-tests: 3.1.0 + eslint-plugin-promise: 6.1.1(eslint@8.45.0) + eslint-plugin-unicorn: 48.0.1(eslint@8.45.0) + eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.45.0) + eslint-plugin-yml: 1.8.0(eslint@8.45.0) + jsonc-eslint-parser: 2.3.0 + yaml-eslint-parser: 1.2.2 + transitivePeerDependencies: + - '@typescript-eslint/eslint-plugin' + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + - typescript + dev: true + + /@antfu/eslint-config-ts@0.39.8(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-oMkIzxxD+sdHpO7Ctk+ej1SCZAoSbPMGyqjfaGLqpaxh87gP7LSFlm6QpsdIWllnTyYB75Hk8LMqFQWCJU9dxw==} + peerDependencies: + eslint: '>=7.4.0' + typescript: '>=3.9' + dependencies: + '@antfu/eslint-config-basic': 0.39.8(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/parser': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - jest + - supports-color + dev: true + + /@antfu/eslint-config-vue@0.39.8(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-BeBRdI8Bm0d9ppomvmPkrIim4IEW4ZHZHsGw2qSw/mSDZwprLyGi9tgNMnoHbN9OBGQwveuurdKFlJz5SlCjrA==} + peerDependencies: + eslint: '>=7.4.0' + dependencies: + '@antfu/eslint-config-basic': 0.39.8(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@antfu/eslint-config-ts': 0.39.8(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + eslint-plugin-vue: 9.15.1(eslint@8.45.0) + local-pkg: 0.4.3 + transitivePeerDependencies: + - '@typescript-eslint/eslint-plugin' + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - jest + - supports-color + - typescript + dev: true + + /@antfu/eslint-config@0.39.8(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-KnDjLw6UEoHdEzB6CzQMm+EkA4ZI94r1Of1rRRw0qxhkFhD/+SQ2BTBgmF5d4wTsU0IT1Dk5JjJ6J/cVFKdXWQ==} + peerDependencies: + eslint: '>=7.4.0' + dependencies: + '@antfu/eslint-config-vue': 0.39.8(@typescript-eslint/eslint-plugin@6.2.0)(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/parser': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + eslint-plugin-eslint-comments: 3.2.0(eslint@8.45.0) + eslint-plugin-html: 7.1.0 + eslint-plugin-import: /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.45.0) + eslint-plugin-jsonc: 2.9.0(eslint@8.45.0) + eslint-plugin-n: 16.0.1(eslint@8.45.0) + eslint-plugin-promise: 6.1.1(eslint@8.45.0) + eslint-plugin-unicorn: 48.0.1(eslint@8.45.0) + eslint-plugin-vue: 9.15.1(eslint@8.45.0) + eslint-plugin-yml: 1.8.0(eslint@8.45.0) + jsonc-eslint-parser: 2.3.0 + yaml-eslint-parser: 1.2.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - jest + - supports-color + - typescript + dev: true + + /@antfu/install-pkg@0.1.1: + resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==} + dependencies: + execa: 5.1.1 + find-up: 5.0.0 + dev: true + + /@antfu/utils@0.7.5: + resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==} + dev: true + + /@babel/code-frame@7.22.5: + resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.22.5 + dev: true + + /@babel/helper-string-parser@7.22.5: + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-identifier@7.22.5: + resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + engines: {node: '>=6.9.0'} + + /@babel/highlight@7.22.5: + resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.22.7: + resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.22.5 + + /@babel/types@7.22.5: + resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + to-fast-properties: 2.0.0 + + /@ctrl/tinycolor@3.6.0: + resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} + engines: {node: '>=10'} + dev: false + + /@element-plus/icons-vue@2.1.0(vue@3.3.4): + resolution: {integrity: sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA==} + peerDependencies: + vue: ^3.2.0 + dependencies: + vue: 3.3.4 + dev: false + + /@esbuild/android-arm64@0.18.17: + resolution: {integrity: sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.18.17: + resolution: {integrity: sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.18.17: + resolution: {integrity: sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.18.17: + resolution: {integrity: sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.18.17: + resolution: {integrity: sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.18.17: + resolution: {integrity: sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.18.17: + resolution: {integrity: sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.18.17: + resolution: {integrity: sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.18.17: + resolution: {integrity: sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.18.17: + resolution: {integrity: sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.18.17: + resolution: {integrity: sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.18.17: + resolution: {integrity: sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.18.17: + resolution: {integrity: sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.18.17: + resolution: {integrity: sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.18.17: + resolution: {integrity: sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.18.17: + resolution: {integrity: sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.18.17: + resolution: {integrity: sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.18.17: + resolution: {integrity: sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.18.17: + resolution: {integrity: sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.18.17: + resolution: {integrity: sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.18.17: + resolution: {integrity: sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.18.17: + resolution: {integrity: sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.45.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.45.0 + eslint-visitor-keys: 3.4.2 + dev: true + + /@eslint-community/regexpp@4.6.2: + resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true + + /@eslint/eslintrc@2.1.1: + resolution: {integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.6.1 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.44.0: + resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@floating-ui/core@1.4.1: + resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==} + dependencies: + '@floating-ui/utils': 0.1.1 + dev: false + + /@floating-ui/dom@1.5.1: + resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==} + dependencies: + '@floating-ui/core': 1.4.1 + '@floating-ui/utils': 0.1.1 + dev: false + + /@floating-ui/utils@0.1.1: + resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==} + dev: false + + /@humanwhocodes/config-array@0.11.10: + resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@iconify/types@2.0.0: + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + dev: true + + /@iconify/utils@2.1.7: + resolution: {integrity: sha512-P8S3z/L1LcV4Qem9AoCfVAaTFGySEMzFEY4CHZLkfRj0Fv9LiR+AwjDgrDrzyI93U2L2mg9JHsbTJ52mF8suNw==} + dependencies: + '@antfu/install-pkg': 0.1.1 + '@antfu/utils': 0.7.5 + '@iconify/types': 2.0.0 + debug: 4.3.4 + kolorist: 1.8.0 + local-pkg: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/schemas@29.6.0: + resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.27.8 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@jridgewell/resolve-uri@3.1.0: + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/sourcemap-codec@1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + /@jridgewell/trace-mapping@0.3.18: + resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@one-ini/wasm@0.1.1: + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + dev: true + + /@polka/url@1.0.0-next.21: + resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} + dev: true + + /@rollup/pluginutils@5.0.2: + resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.1 + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@rushstack/eslint-patch@1.3.2: + resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==} + dev: true + + /@sinclair/typebox@0.27.8: + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + dev: true + + /@sxzz/popperjs-es@2.11.7: + resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==} + dev: false + + /@tootallnate/once@2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true + + /@tsconfig/node18@18.2.0: + resolution: {integrity: sha512-yhxwIlFVSVcMym3O31HoMnRXpoenmpIxcj4Yoes2DUpe+xCJnA7ECQP1Vw889V0jTt/2nzvpLQ/UuMYCd3JPIg==} + dev: true + + /@types/chai-subset@1.3.3: + resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + dependencies: + '@types/chai': 4.3.5 + dev: true + + /@types/chai@4.3.5: + resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} + dev: true + + /@types/estree@1.0.1: + resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + dev: true + + /@types/jsdom@21.1.1: + resolution: {integrity: sha512-cZFuoVLtzKP3gmq9eNosUL1R50U+USkbLtUQ1bYVgl/lKp0FZM7Cq4aIHAL8oIvQ17uSHi7jXPtfDOdjPwBE7A==} + dependencies: + '@types/node': 18.17.0 + '@types/tough-cookie': 4.0.2 + parse5: 7.1.2 + dev: true + + /@types/json-schema@7.0.12: + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + dev: true + + /@types/lodash-es@4.17.8: + resolution: {integrity: sha512-euY3XQcZmIzSy7YH5+Unb3b2X12Wtk54YWINBvvGQ5SmMvwb11JQskGsfkH/5HXK77Kr8GF0wkVDIxzAisWtog==} + dependencies: + '@types/lodash': 4.14.196 + dev: false + + /@types/lodash@4.14.196: + resolution: {integrity: sha512-22y3o88f4a94mKljsZcanlNWPzO0uBsBdzLAngf2tp533LzZcQzb6+eZPJ+vCTt+bqF2XnvT9gejTLsAcJAJyQ==} + dev: false + + /@types/mdast@3.0.12: + resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==} + dependencies: + '@types/unist': 2.0.7 + dev: true + + /@types/node@18.17.0: + resolution: {integrity: sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg==} + dev: true + + /@types/normalize-package-data@2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + + /@types/semver@7.5.0: + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + dev: true + + /@types/tough-cookie@4.0.2: + resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} + dev: true + + /@types/unist@2.0.7: + resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==} + dev: true + + /@types/web-bluetooth@0.0.16: + resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} + dev: false + + /@types/web-bluetooth@0.0.17: + resolution: {integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==} + dev: false + + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.6.2 + '@typescript-eslint/parser': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + debug: 4.3.4 + eslint: 8.45.0 + graphemer: 1.4.0 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + semver: 7.5.4 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-rClGrMuyS/3j0ETa1Ui7s6GkLhfZGKZL3ZrChLeAiACBE/tRc1wq8SNZESUuluxhLj9FkUefRs2l6bCIArWBiQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.6.2 + '@typescript-eslint/parser': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/scope-manager': 6.2.0 + '@typescript-eslint/type-utils': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/utils': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/visitor-keys': 6.2.0 + debug: 4.3.4 + eslint: 8.45.0 + graphemer: 1.4.0 + ignore: 5.2.4 + natural-compare: 1.4.0 + natural-compare-lite: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.0.1(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.62.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) + debug: 4.3.4 + eslint: 8.45.0 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.2.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-igVYOqtiK/UsvKAmmloQAruAdUHihsOCvplJpplPZ+3h4aDkC/UKZZNKgB6h93ayuYLuEymU3h8nF1xMRbh37g==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.2.0 + '@typescript-eslint/types': 6.2.0 + '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6) + '@typescript-eslint/visitor-keys': 6.2.0 + debug: 4.3.4 + eslint: 8.45.0 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.62.0: + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + dev: true + + /@typescript-eslint/scope-manager@6.2.0: + resolution: {integrity: sha512-1ZMNVgm5nnHURU8ZSJ3snsHzpFeNK84rdZjluEVBGNu7jDymfqceB3kdIZ6A4xCfEFFhRIB6rF8q/JIqJd2R0Q==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 6.2.0 + '@typescript-eslint/visitor-keys': 6.2.0 + dev: true + + /@typescript-eslint/type-utils@5.62.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + debug: 4.3.4 + eslint: 8.45.0 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@6.2.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-DnGZuNU2JN3AYwddYIqrVkYW0uUQdv0AY+kz2M25euVNlujcN2u+rJgfJsBFlUEzBB6OQkUqSZPyuTLf2bP5mw==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6) + '@typescript-eslint/utils': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + debug: 4.3.4 + eslint: 8.45.0 + ts-api-utils: 1.0.1(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.62.0: + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/types@6.2.0: + resolution: {integrity: sha512-1nRRaDlp/XYJQLvkQJG5F3uBTno5SHPT7XVcJ5n1/k2WfNI28nJsvLakxwZRNY5spuatEKO7d5nZWsQpkqXwBA==} + engines: {node: ^16.0.0 || >=18.0.0} + dev: true + + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6): + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.4 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@6.2.0(typescript@5.1.6): + resolution: {integrity: sha512-Mts6+3HQMSM+LZCglsc2yMIny37IhUgp1Qe8yJUYVyO6rHP7/vN0vajKu3JvHCBIy8TSiKddJ/Zwu80jhnGj1w==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 6.2.0 + '@typescript-eslint/visitor-keys': 6.2.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.4 + ts-api-utils: 1.0.1(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.62.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) + eslint: 8.45.0 + eslint-scope: 5.1.1 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@6.2.0(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-RCFrC1lXiX1qEZN8LmLrxYRhOkElEsPKTVSNout8DMzf8PeWoQG7Rxz2SadpJa3VSh5oYKGwt7j7X/VRg+Y3OQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.2.0 + '@typescript-eslint/types': 6.2.0 + '@typescript-eslint/typescript-estree': 6.2.0(typescript@5.1.6) + eslint: 8.45.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.62.0: + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.2 + dev: true + + /@typescript-eslint/visitor-keys@6.2.0: + resolution: {integrity: sha512-QbaYUQVKKo9bgCzpjz45llCfwakyoxHetIy8CAvYCtd16Zu1KrpzNHofwF8kGkpPOxZB2o6kz+0nqH8ZkIzuoQ==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 6.2.0 + eslint-visitor-keys: 3.4.2 + dev: true + + /@unocss/astro@0.54.0(vite@4.4.6): + resolution: {integrity: sha512-Zq4GGRiXbWCipN9lUKlu3fmlrqIYu3rFoGwjL+v7VJulP8tVhiqzfbLXFKQePOVvCmiSvCKr6leuqgFA7PlPBg==} + dependencies: + '@unocss/core': 0.54.0 + '@unocss/reset': 0.54.0 + '@unocss/vite': 0.54.0(vite@4.4.6) + transitivePeerDependencies: + - rollup + - vite + dev: true + + /@unocss/cli@0.54.0: + resolution: {integrity: sha512-SuQkqJxuvC9JHUpHbFQY5r+6/FoF0j4zTwY25POlr9SIz3CFrdn4tDndxvhClap9d6wVHKSbHBP9EY0fA2SQzw==} + engines: {node: '>=14'} + hasBin: true + dependencies: + '@ampproject/remapping': 2.2.1 + '@rollup/pluginutils': 5.0.2 + '@unocss/config': 0.54.0 + '@unocss/core': 0.54.0 + '@unocss/preset-uno': 0.54.0 + cac: 6.7.14 + chokidar: 3.5.3 + colorette: 2.0.20 + consola: 3.2.3 + fast-glob: 3.3.1 + magic-string: 0.30.2 + pathe: 1.1.1 + perfect-debounce: 1.0.0 + transitivePeerDependencies: + - rollup + dev: true + + /@unocss/config@0.54.0: + resolution: {integrity: sha512-FT0zOJCR2qr5P08msNovsJ4Qx+P4rXoYlK2zt/hgLKiFRIUKxnwSBDvapqmW6vo3vzOsdmBBO0YKpaZJ877F8A==} + engines: {node: '>=14'} + dependencies: + '@unocss/core': 0.54.0 + unconfig: 0.3.9 + dev: true + + /@unocss/core@0.54.0: + resolution: {integrity: sha512-iHfJJ8U+pVhMrbVpzMb0GImZUJu3Xmp165Q5Qr44hGOEzcMdvdBxbMSSl2VBKjRsEuNudNVhh7XJAyUcKxnSWg==} + dev: true + + /@unocss/extractor-arbitrary-variants@0.54.0: + resolution: {integrity: sha512-luJTF3TnXFbMZ2Gau56p0uRsR+yIUbvHbT6ag6mvv0TvUsnhEFsMUdkXVJ1arp0duIl/dg0r1drL/Ax75RszNw==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/inspector@0.54.0: + resolution: {integrity: sha512-D3yVO7zE4NY/sARiNCUXQC7HPQZhEy7U1mSZEPc+vsVKx3nJJuRMqK9qo60SV4AZuxnd8WhL0T00W7cjVldzRw==} + dependencies: + gzip-size: 6.0.0 + sirv: 2.0.3 + dev: true + + /@unocss/postcss@0.54.0(postcss@8.4.27): + resolution: {integrity: sha512-t1PmIkp2Qa9F/9swfCVCXMuheQxd1ddrcvf0+d4fOckpFF8YhvOi+WfMoZW4YFwoCmG5pvDg4VYgKbDunGHhRg==} + engines: {node: '>=14'} + peerDependencies: + postcss: ^8.4.21 + dependencies: + '@unocss/config': 0.54.0 + '@unocss/core': 0.54.0 + css-tree: 2.3.1 + fast-glob: 3.3.1 + magic-string: 0.30.2 + postcss: 8.4.27 + dev: true + + /@unocss/preset-attributify@0.54.0: + resolution: {integrity: sha512-5Ar1n7LHKF6z1BF9N5CR8jjl9TXrVktTDd+Ldyia69jDLi+stVhM9AOGEDE8wbDkLKwv9CK5XhvyPCazGHrG+A==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/preset-icons@0.54.0: + resolution: {integrity: sha512-WHdkpMzj6tohIkCc/+mEOzn0Yppqoz3y5zbI3WsDqA2/QFNSXx4haWcjV5iJI42uGcLXRp4K3l9JV3EL+oAxbg==} + dependencies: + '@iconify/utils': 2.1.7 + '@unocss/core': 0.54.0 + ofetch: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@unocss/preset-mini@0.54.0: + resolution: {integrity: sha512-y+BnGpQAGC3ZWWZfXnsvUuTTO2rNnakHx4jIyf1cv7rw5oo7jL+ONb8stKqlmLGCzlQUKjG1xp+DGuKSVnRXBw==} + dependencies: + '@unocss/core': 0.54.0 + '@unocss/extractor-arbitrary-variants': 0.54.0 + dev: true + + /@unocss/preset-rem-to-px@0.54.0: + resolution: {integrity: sha512-/NZ2Ky8uhTyMtoTaqaHiJ54hVz3tVcT8+P4OgTis2DOsk1Nzp2NKJX0qQjCOPJnSFzK5mXVyHJVPt57ReLX6hQ==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/preset-tagify@0.54.0: + resolution: {integrity: sha512-FTIZc0vMoX9+fcjPYMWALpCQp3cZQCFzR05CVJapvymxb6zl5eZq7e+tpvrmU9ZPSOdG+eHTd3SxhjeJSwh15g==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/preset-typography@0.54.0: + resolution: {integrity: sha512-QqHmC49nDgYeoOCMZp1OPn6R7ISIb2LMpSq81iuuFDeYO8J+JTBWe+Z1TZhVRAXwc9rsVZeUWW6PqoBGP9QCOw==} + dependencies: + '@unocss/core': 0.54.0 + '@unocss/preset-mini': 0.54.0 + dev: true + + /@unocss/preset-uno@0.54.0: + resolution: {integrity: sha512-09/sthjGLDNMr/Cayu0Gy9jTMSxUuTfetWnM3jkByNidhfuzMW26eaMhxTrbUd28H8Titt6M+WgbJ7Gi0lQtZA==} + dependencies: + '@unocss/core': 0.54.0 + '@unocss/preset-mini': 0.54.0 + '@unocss/preset-wind': 0.54.0 + dev: true + + /@unocss/preset-web-fonts@0.54.0: + resolution: {integrity: sha512-3x1SDbJ2omwNNc3eK19zOdNU6moJg4SEr09GkeV4MMHrMXM6BHW2mEJYFSVgmTVD1RN4LZuoy/gTHMWpJhTuzw==} + dependencies: + '@unocss/core': 0.54.0 + ofetch: 1.1.1 + dev: true + + /@unocss/preset-wind@0.54.0: + resolution: {integrity: sha512-SO971KQOYzM5IKwGDBve+EWBKevU1T0mK20g17BHxPI++ubHPWRRQIh/xxHyew592taBFWK6Q75fcbOgIodx4w==} + dependencies: + '@unocss/core': 0.54.0 + '@unocss/preset-mini': 0.54.0 + dev: true + + /@unocss/reset@0.54.0: + resolution: {integrity: sha512-zxvr96hVsmvJtxCLatLSCc67RBEgqvVDhEtkIFxIz5oCJzxvipJTGdKxM4F6Akyzx1A+q7zM8dimqvmC6D5Idw==} + dev: true + + /@unocss/scope@0.54.0: + resolution: {integrity: sha512-47M3y3sl512BWZL5/aLrGPglQIRUjQrIW+WVVh3uzwIGVnDNHlxIhcHQUXXJuf8SLduXoIvcZQTfJt+jSXeuhA==} + dev: true + + /@unocss/transformer-attributify-jsx-babel@0.54.0: + resolution: {integrity: sha512-+YWhyReh6JZvGiYFZ61tyqkKOc/Tn+hyYaO7VP+G2IvJqtjTwzAuyxANHimCle7O4GLodouiHPe3lKscVFt0vg==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/transformer-attributify-jsx@0.54.0: + resolution: {integrity: sha512-in5IglhFqY/3GFe7IZA7g5Q9fskjiWAZiKtCTp5vFExagq1d3Tr9VIOA98SEXBrpXXIh3lKbTiY0NusJRU3K2Q==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/transformer-compile-class@0.54.0: + resolution: {integrity: sha512-WK1fC+iDOl7Z7fO2ids6nWiMXMPHEfwMOs5dbv5lBz9UTrY1kpObToBsm3EfzhR6vwOTgld1UzpKAs3zCqZoKg==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/transformer-directives@0.54.0: + resolution: {integrity: sha512-DJ9B5TSxScoj4B1C8H3qeUIfNGjUPuM42Lvl2exDEk4RhA/IwVePnCAjTl8UsHTDI9z+6H37v4p8j8srPrzEmQ==} + dependencies: + '@unocss/core': 0.54.0 + css-tree: 2.3.1 + dev: true + + /@unocss/transformer-variant-group@0.54.0: + resolution: {integrity: sha512-qwviBwjBKhbXYK0T1wNuM3weY+RJbmrWmKqWTldXAuZDf0q06KAa4jQC8FF1YXhq5/Z6tn2MW2GFPVWd/8nPHQ==} + dependencies: + '@unocss/core': 0.54.0 + dev: true + + /@unocss/vite@0.54.0(vite@4.4.6): + resolution: {integrity: sha512-lABmJKYs/yNfZZSs3xwVhBZwNhfLaYcdKxPAopJ8MKiUqECdWvHqLvklKQvLttZpN3dQUmGTQLblM+55IodKEw==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 + dependencies: + '@ampproject/remapping': 2.2.1 + '@rollup/pluginutils': 5.0.2 + '@unocss/config': 0.54.0 + '@unocss/core': 0.54.0 + '@unocss/inspector': 0.54.0 + '@unocss/scope': 0.54.0 + '@unocss/transformer-directives': 0.54.0 + chokidar: 3.5.3 + fast-glob: 3.3.1 + magic-string: 0.30.2 + vite: 4.4.6(@types/node@18.17.0) + transitivePeerDependencies: + - rollup + dev: true + + /@vitejs/plugin-vue@4.2.3(vite@4.4.6)(vue@3.3.4): + resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.0.0 + vue: ^3.2.25 + dependencies: + vite: 4.4.6(@types/node@18.17.0) + vue: 3.3.4 + dev: true + + /@vitest/expect@0.33.0: + resolution: {integrity: sha512-sVNf+Gla3mhTCxNJx+wJLDPp/WcstOe0Ksqz4Vec51MmgMth/ia0MGFEkIZmVGeTL5HtjYR4Wl/ZxBxBXZJTzQ==} + dependencies: + '@vitest/spy': 0.33.0 + '@vitest/utils': 0.33.0 + chai: 4.3.7 + dev: true + + /@vitest/runner@0.33.0: + resolution: {integrity: sha512-UPfACnmCB6HKRHTlcgCoBh6ppl6fDn+J/xR8dTufWiKt/74Y9bHci5CKB8tESSV82zKYtkBJo9whU3mNvfaisg==} + dependencies: + '@vitest/utils': 0.33.0 + p-limit: 4.0.0 + pathe: 1.1.1 + dev: true + + /@vitest/snapshot@0.33.0: + resolution: {integrity: sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==} + dependencies: + magic-string: 0.30.2 + pathe: 1.1.1 + pretty-format: 29.6.2 + dev: true + + /@vitest/spy@0.33.0: + resolution: {integrity: sha512-Kv+yZ4hnH1WdiAkPUQTpRxW8kGtH8VRTnus7ZTGovFYM1ZezJpvGtb9nPIjPnptHbsyIAxYZsEpVPYgtpjGnrg==} + dependencies: + tinyspy: 2.1.1 + dev: true + + /@vitest/utils@0.33.0: + resolution: {integrity: sha512-pF1w22ic965sv+EN6uoePkAOTkAPWM03Ri/jXNyMIKBb/XHLDPfhLvf/Fa9g0YECevAIz56oVYXhodLvLQ/awA==} + dependencies: + diff-sequences: 29.4.3 + loupe: 2.3.6 + pretty-format: 29.6.2 + dev: true + + /@volar/language-core@1.9.2: + resolution: {integrity: sha512-9GTes/IUPOl0YoV5RQWhCP5a4EDFFfJZGwZn1xA5ug1FO0G6GOVoJI6tQatujtcQmDOQlOM5/0NewnlumygPkQ==} + dependencies: + '@volar/source-map': 1.9.2 + dev: true + + /@volar/source-map@1.9.2: + resolution: {integrity: sha512-rYTvV/HMf2CSRkd6oiVxcjX4rnSxEsVfJmw1KTmD4VTBXlz1+b16VIysQX4+1p/eZd2TyCeFblyylIxbZ+YOGg==} + dependencies: + muggle-string: 0.3.1 + dev: true + + /@volar/typescript@1.9.2: + resolution: {integrity: sha512-l4DA+S3ZVOWGACDdRNVSYZ41nuTWOH8OMS/yVeFV2fTmr/IuD37+3wzzGnjIPwCUa0w+fpg8vJPalzYetmlFTQ==} + dependencies: + '@volar/language-core': 1.9.2 + dev: true + + /@vue/compiler-core@3.3.4: + resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} + dependencies: + '@babel/parser': 7.22.7 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + source-map-js: 1.0.2 + + /@vue/compiler-dom@3.3.4: + resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} + dependencies: + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 + + /@vue/compiler-sfc@3.3.4: + resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} + dependencies: + '@babel/parser': 7.22.7 + '@vue/compiler-core': 3.3.4 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-ssr': 3.3.4 + '@vue/reactivity-transform': 3.3.4 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + magic-string: 0.30.2 + postcss: 8.4.27 + source-map-js: 1.0.2 + + /@vue/compiler-ssr@3.3.4: + resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} + dependencies: + '@vue/compiler-dom': 3.3.4 + '@vue/shared': 3.3.4 + + /@vue/devtools-api@6.5.0: + resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} + dev: false + + /@vue/eslint-config-typescript@11.0.3(eslint-plugin-vue@9.15.1)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-dkt6W0PX6H/4Xuxg/BlFj5xHvksjpSlVjtkQCpaYJBIEuKj2hOVU7r+TIe+ysCwRYFz/lGqvklntRkCAibsbPw==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + eslint-plugin-vue: ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/parser': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + eslint-plugin-vue: 9.15.1(eslint@8.45.0) + typescript: 5.1.6 + vue-eslint-parser: 9.3.1(eslint@8.45.0) + transitivePeerDependencies: + - supports-color + dev: true + + /@vue/language-core@1.8.6(typescript@5.1.6): + resolution: {integrity: sha512-PyYDMArbR7hnhqw9OEupr0s4ut0/ZfITp7WEjigF58cd2R0lRLNM1HPvzFMuULpy3ImBEOZI11KRIDirqOe+tQ==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@volar/language-core': 1.9.2 + '@volar/source-map': 1.9.2 + '@vue/compiler-dom': 3.3.4 + '@vue/reactivity': 3.3.4 + '@vue/shared': 3.3.4 + minimatch: 9.0.3 + muggle-string: 0.3.1 + typescript: 5.1.6 + vue-template-compiler: 2.7.14 + dev: true + + /@vue/reactivity-transform@3.3.4: + resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} + dependencies: + '@babel/parser': 7.22.7 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + magic-string: 0.30.2 + + /@vue/reactivity@3.3.4: + resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} + dependencies: + '@vue/shared': 3.3.4 + + /@vue/runtime-core@3.3.4: + resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==} + dependencies: + '@vue/reactivity': 3.3.4 + '@vue/shared': 3.3.4 + + /@vue/runtime-dom@3.3.4: + resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==} + dependencies: + '@vue/runtime-core': 3.3.4 + '@vue/shared': 3.3.4 + csstype: 3.1.2 + + /@vue/server-renderer@3.3.4(vue@3.3.4): + resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==} + peerDependencies: + vue: 3.3.4 + dependencies: + '@vue/compiler-ssr': 3.3.4 + '@vue/shared': 3.3.4 + vue: 3.3.4 + + /@vue/shared@3.3.4: + resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} + + /@vue/test-utils@2.4.1(vue@3.3.4): + resolution: {integrity: sha512-VO8nragneNzUZUah6kOjiFmD/gwRjUauG9DROh6oaOeFwX1cZRUNHhdeogE8635cISigXFTtGLUQWx5KCb0xeg==} + peerDependencies: + '@vue/server-renderer': ^3.0.1 + vue: ^3.0.1 + peerDependenciesMeta: + '@vue/server-renderer': + optional: true + dependencies: + js-beautify: 1.14.9 + vue: 3.3.4 + vue-component-type-helpers: 1.8.4 + dev: true + + /@vue/tsconfig@0.4.0: + resolution: {integrity: sha512-CPuIReonid9+zOG/CGTT05FXrPYATEqoDGNrEaqS4hwcw5BUNM2FguC0mOwJD4Jr16UpRVl9N0pY3P+srIbqmg==} + dev: true + + /@vue/typescript@1.8.6(typescript@5.1.6): + resolution: {integrity: sha512-sDQ5tltrSVS3lAkE3JtMRGJo91CLIxcWPy7yms/DT+ssxXpwxbVRD5Gok68HenEZBA4Klq7nW99sG/nTRnpPuQ==} + dependencies: + '@volar/typescript': 1.9.2 + '@vue/language-core': 1.8.6(typescript@5.1.6) + transitivePeerDependencies: + - typescript + dev: true + + /@vueuse/core@10.2.1(vue@3.3.4): + resolution: {integrity: sha512-c441bfMbkAwTNwVRHQ0zdYZNETK//P84rC01aP2Uy/aRFCiie9NE/k9KdIXbno0eDYP5NPUuWv0aA/I4Unr/7w==} + dependencies: + '@types/web-bluetooth': 0.0.17 + '@vueuse/metadata': 10.2.1 + '@vueuse/shared': 10.2.1(vue@3.3.4) + vue-demi: 0.14.5(vue@3.3.4) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + dev: false + + /@vueuse/core@9.13.0(vue@3.3.4): + resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} + dependencies: + '@types/web-bluetooth': 0.0.16 + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0(vue@3.3.4) + vue-demi: 0.14.5(vue@3.3.4) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + dev: false + + /@vueuse/metadata@10.2.1: + resolution: {integrity: sha512-3Gt68mY/i6bQvFqx7cuGBzrCCQu17OBaGWS5JdwISpMsHnMKKjC2FeB5OAfMcCQ0oINfADP3i9A4PPRo0peHdQ==} + dev: false + + /@vueuse/metadata@9.13.0: + resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} + dev: false + + /@vueuse/shared@10.2.1(vue@3.3.4): + resolution: {integrity: sha512-QWHq2bSuGptkcxx4f4M/fBYC3Y8d3M2UYyLsyzoPgEoVzJURQ0oJeWXu79OiLlBb8gTKkqe4mO85T/sf39mmiw==} + dependencies: + vue-demi: 0.14.5(vue@3.3.4) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + dev: false + + /@vueuse/shared@9.13.0(vue@3.3.4): + resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} + dependencies: + vue-demi: 0.14.5(vue@3.3.4) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + dev: false + + /abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + dev: true + + /abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true + + /acorn-jsx@5.3.2(acorn@8.10.0): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.10.0 + dev: true + + /acorn-walk@8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + dev: true + + /any-promise@1.3.0: + resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=} + dev: true + + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.2 + is-array-buffer: 3.0.2 + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /arraybuffer.prototype.slice@1.0.1: + resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.2 + define-properties: 1.2.0 + get-intrinsic: 1.2.1 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + + /assertion-error@1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + dev: true + + /async-validator@4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} + dev: false + + /asynckit@0.4.0: + resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} + dev: true + + /available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /boolbase@1.0.0: + resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + + /builtins@5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.5.4 + dev: true + + /cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + dev: true + + /call-bind@1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.2.1 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + dev: true + + /chai@4.3.7: + resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 4.1.3 + get-func-name: 2.0.0 + loupe: 2.3.6 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + dev: true + + /character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + dev: true + + /character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + dev: true + + /check-error@1.0.2: + resolution: {integrity: sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=} + dev: true + + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /ci-info@3.8.0: + resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + engines: {node: '>=8'} + dev: true + + /clean-regexp@1.0.0: + resolution: {integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=} + engines: {node: '>=4'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + + /commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + dev: true + + /commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + dev: true + + /config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + dev: true + + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true + + /cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 + dev: true + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /cssstyle@3.0.0: + resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} + engines: {node: '>=14'} + dependencies: + rrweb-cssom: 0.6.0 + dev: true + + /csstype@3.1.2: + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + + /data-urls@4.0.0: + resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} + engines: {node: '>=14'} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + dev: true + + /dayjs@1.11.9: + resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + dev: false + + /de-indent@1.0.2: + resolution: {integrity: sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=} + dev: true + + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true + + /deep-eql@4.1.3: + resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} + engines: {node: '>=6'} + dependencies: + type-detect: 4.0.8 + dev: true + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /define-properties@1.2.0: + resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /defu@6.1.2: + resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} + engines: {node: '>=0.4.0'} + dev: true + + /destr@2.0.0: + resolution: {integrity: sha512-FJ9RDpf3GicEBvzI3jxc2XhHzbqD8p4ANw/1kPsFBfTvP1b7Gn/Lg1vO7R9J4IVgoMbyUmFrFGZafJ1hPZpvlg==} + dev: true + + /didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + dev: true + + /diff-sequences@29.4.3: + resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dev: true + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dev: true + + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + dev: true + + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + dependencies: + webidl-conversions: 7.0.0 + dev: true + + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: true + + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + dependencies: + '@one-ini/wasm': 0.1.1 + commander: 10.0.1 + minimatch: 9.0.1 + semver: 7.5.4 + dev: true + + /element-plus@2.3.9(vue@3.3.4): + resolution: {integrity: sha512-TIOLnPl4cnoCPXqK3QYh+jpkthUBQnAM21O7o3Lhbse8v9pfrRXRTaBJtoEKnYNa8GZ4lZptUfH0PeZgDCNLUg==} + peerDependencies: + vue: ^3.2.0 + dependencies: + '@ctrl/tinycolor': 3.6.0 + '@element-plus/icons-vue': 2.1.0(vue@3.3.4) + '@floating-ui/dom': 1.5.1 + '@popperjs/core': /@sxzz/popperjs-es@2.11.7 + '@types/lodash': 4.14.196 + '@types/lodash-es': 4.17.8 + '@vueuse/core': 9.13.0(vue@3.3.4) + async-validator: 4.2.5 + dayjs: 1.11.9 + escape-html: 1.0.3 + lodash: 4.17.21 + lodash-es: 4.17.21 + lodash-unified: 1.0.3(@types/lodash-es@4.17.8)(lodash-es@4.17.21)(lodash@4.17.21) + memoize-one: 6.0.0 + normalize-wheel-es: 1.2.0 + vue: 3.3.4 + transitivePeerDependencies: + - '@vue/composition-api' + dev: false + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.22.1: + resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.1 + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.1 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.0 + safe-array-concat: 1.0.0 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.7 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.11 + dev: true + + /es-set-tostringtag@2.0.1: + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild@0.18.17: + resolution: {integrity: sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.18.17 + '@esbuild/android-arm64': 0.18.17 + '@esbuild/android-x64': 0.18.17 + '@esbuild/darwin-arm64': 0.18.17 + '@esbuild/darwin-x64': 0.18.17 + '@esbuild/freebsd-arm64': 0.18.17 + '@esbuild/freebsd-x64': 0.18.17 + '@esbuild/linux-arm': 0.18.17 + '@esbuild/linux-arm64': 0.18.17 + '@esbuild/linux-ia32': 0.18.17 + '@esbuild/linux-loong64': 0.18.17 + '@esbuild/linux-mips64el': 0.18.17 + '@esbuild/linux-ppc64': 0.18.17 + '@esbuild/linux-riscv64': 0.18.17 + '@esbuild/linux-s390x': 0.18.17 + '@esbuild/linux-x64': 0.18.17 + '@esbuild/netbsd-x64': 0.18.17 + '@esbuild/openbsd-x64': 0.18.17 + '@esbuild/sunos-x64': 0.18.17 + '@esbuild/win32-arm64': 0.18.17 + '@esbuild/win32-ia32': 0.18.17 + '@esbuild/win32-x64': 0.18.17 + dev: true + + /escape-html@1.0.3: + resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + dev: false + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-import-resolver-node@0.3.7: + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + dependencies: + debug: 3.2.7 + is-core-module: 2.12.1 + resolve: 1.22.3 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.2.0)(eslint-import-resolver-node@0.3.7)(eslint@8.45.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + debug: 3.2.7 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-antfu@0.39.8(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-VsQF1mofv0pg+9rhSohNhrxcufOzSsGyQdKqdyJHPMTT2mMwXAPgKW/v8SC6W7UDk1q/j2EHZ+UUOEAKRnkd7g==} + dependencies: + '@typescript-eslint/utils': 6.2.0(eslint@8.45.0)(typescript@5.1.6) + transitivePeerDependencies: + - eslint + - supports-color + - typescript + dev: true + + /eslint-plugin-es-x@7.2.0(eslint@8.45.0): + resolution: {integrity: sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '>=8' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/regexpp': 4.6.2 + eslint: 8.45.0 + dev: true + + /eslint-plugin-eslint-comments@3.2.0(eslint@8.45.0): + resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} + engines: {node: '>=6.5.0'} + peerDependencies: + eslint: '>=4.19.1' + dependencies: + escape-string-regexp: 1.0.5 + eslint: 8.45.0 + ignore: 5.2.4 + dev: true + + /eslint-plugin-html@7.1.0: + resolution: {integrity: sha512-fNLRraV/e6j8e3XYOC9xgND4j+U7b1Rq+OygMlLcMg+wI/IpVbF+ubQa3R78EjKB9njT6TQOlcK5rFKBVVtdfg==} + dependencies: + htmlparser2: 8.0.2 + dev: true + + /eslint-plugin-i@2.27.5-4(@typescript-eslint/parser@6.2.0)(eslint@8.45.0): + resolution: {integrity: sha512-X3Z+dp9nZw7d/y41EDO6JyFw4WVMOT91SFuoJvL0C0/4M1l6NxQ5mLTjXHuYhq0AazW75pAmj25yMk5wPMzjsw==} + engines: {node: '>=12'} + peerDependencies: + eslint: ^7.2.0 || ^8 + dependencies: + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.2.0)(eslint-import-resolver-node@0.3.7)(eslint@8.45.0) + get-tsconfig: 4.6.2 + is-glob: 4.0.3 + minimatch: 3.1.2 + resolve: 1.22.3 + semver: 7.5.4 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.45.0)(typescript@5.1.6): + resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 + eslint: ^7.0.0 || ^8.0.0 + jest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + jest: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + '@typescript-eslint/utils': 5.62.0(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-jsonc@2.9.0(eslint@8.45.0): + resolution: {integrity: sha512-RK+LeONVukbLwT2+t7/OY54NJRccTXh/QbnXzPuTLpFMVZhPuq1C9E07+qWenGx7rrQl0kAalAWl7EmB+RjpGA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + eslint: 8.45.0 + jsonc-eslint-parser: 2.3.0 + natural-compare: 1.4.0 + dev: true + + /eslint-plugin-markdown@3.0.1(eslint@8.45.0): + resolution: {integrity: sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.45.0 + mdast-util-from-markdown: 0.8.5 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-n@16.0.1(eslint@8.45.0): + resolution: {integrity: sha512-CDmHegJN0OF3L5cz5tATH84RPQm9kG+Yx39wIqIwPR2C0uhBGMWfbbOtetR83PQjjidA5aXMu+LEFw1jaSwvTA==} + engines: {node: '>=16.0.0'} + peerDependencies: + eslint: '>=7.0.0' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + builtins: 5.0.1 + eslint: 8.45.0 + eslint-plugin-es-x: 7.2.0(eslint@8.45.0) + ignore: 5.2.4 + is-core-module: 2.12.1 + minimatch: 3.1.2 + resolve: 1.22.2 + semver: 7.5.4 + dev: true + + /eslint-plugin-no-only-tests@3.1.0: + resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==} + engines: {node: '>=5.0.0'} + dev: true + + /eslint-plugin-promise@6.1.1(eslint@8.45.0): + resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.45.0 + dev: true + + /eslint-plugin-unicorn@48.0.1(eslint@8.45.0): + resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==} + engines: {node: '>=16'} + peerDependencies: + eslint: '>=8.44.0' + dependencies: + '@babel/helper-validator-identifier': 7.22.5 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + ci-info: 3.8.0 + clean-regexp: 1.0.0 + eslint: 8.45.0 + esquery: 1.5.0 + indent-string: 4.0.0 + is-builtin-module: 3.2.1 + jsesc: 3.0.2 + lodash: 4.17.21 + pluralize: 8.0.0 + read-pkg-up: 7.0.1 + regexp-tree: 0.1.27 + regjsparser: 0.10.0 + semver: 7.5.4 + strip-indent: 3.0.0 + dev: true + + /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.2.0)(eslint@8.45.0): + resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^6.0.0 + eslint: ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 6.2.0(@typescript-eslint/parser@6.2.0)(eslint@8.45.0)(typescript@5.1.6) + eslint: 8.45.0 + eslint-rule-composer: 0.3.0 + dev: true + + /eslint-plugin-vue@9.15.1(eslint@8.45.0): + resolution: {integrity: sha512-CJE/oZOslvmAR9hf8SClTdQ9JLweghT6JCBQNrT2Iel1uVw0W0OLJxzvPd6CxmABKCvLrtyDnqGV37O7KQv6+A==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + eslint: 8.45.0 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.13 + semver: 7.5.4 + vue-eslint-parser: 9.3.1(eslint@8.45.0) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-yml@1.8.0(eslint@8.45.0): + resolution: {integrity: sha512-fgBiJvXD0P2IN7SARDJ2J7mx8t0bLdG6Zcig4ufOqW5hOvSiFxeUyc2g5I1uIm8AExbo26NNYCcTGZT0MXTsyg==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.45.0 + lodash: 4.17.21 + natural-compare: 1.4.0 + yaml-eslint-parser: 1.2.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-rule-composer@0.3.0: + resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} + engines: {node: '>=4.0.0'} + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-visitor-keys@3.4.2: + resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@8.45.0: + resolution: {integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0) + '@eslint-community/regexpp': 4.6.2 + '@eslint/eslintrc': 2.1.1 + '@eslint/js': 8.44.0 + '@humanwhocodes/config-array': 0.11.10 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.2 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.20.0 + graphemer: 1.4.0 + ignore: 5.2.4 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) + eslint-visitor-keys: 3.4.2 + dev: true + + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} + dev: true + + /fastq@1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + dependencies: + reusify: 1.0.4 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.7: + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + dev: true + + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + dev: true + + /fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true + + /function.prototype.name@1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /get-func-name@2.0.0: + resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=} + dev: true + + /get-intrinsic@1.2.1: + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-proto: 1.0.1 + has-symbols: 1.0.3 + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + dev: true + + /get-tsconfig@4.6.2: + resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==} + dependencies: + resolve-pkg-maps: 1.0.0 + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@7.1.6: + resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: true + + /globals@13.20.0: + resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.0 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.1 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + dev: true + + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true + + /gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has@1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: true + + /he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + dependencies: + whatwg-encoding: 2.0.0 + dev: true + + /htmlparser2@8.0.2: + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + dev: true + + /http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ignore@5.2.4: + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /internal-slot@1.0.5: + resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + dev: true + + /is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + dev: true + + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} + dev: true + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + dependencies: + builtin-modules: 3.3.0 + dev: true + + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module@2.12.1: + resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} + dependencies: + has: 1.0.3 + dev: true + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + engines: {node: '>=0.10.0'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + dev: true + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.11 + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + dev: true + + /jiti@1.19.1: + resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} + hasBin: true + dev: true + + /js-beautify@1.14.9: + resolution: {integrity: sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==} + engines: {node: '>=12'} + hasBin: true + dependencies: + config-chain: 1.1.13 + editorconfig: 1.0.4 + glob: 8.1.0 + nopt: 6.0.0 + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsdom@22.1.0: + resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} + engines: {node: '>=16'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + cssstyle: 3.0.0 + data-urls: 4.0.0 + decimal.js: 10.4.3 + domexception: 4.0.0 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.7 + parse5: 7.1.2 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + ws: 8.13.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsesc@0.5.0: + resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} + hasBin: true + dev: true + + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} + dev: true + + /jsonc-eslint-parser@2.3.0: + resolution: {integrity: sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.10.0 + eslint-visitor-keys: 3.4.2 + espree: 9.6.1 + semver: 7.5.4 + dev: true + + /jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: true + + /kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + dev: true + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /load-json-file@4.0.0: + resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /local-pkg@0.4.3: + resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} + engines: {node: '>=14'} + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + dev: false + + /lodash-unified@1.0.3(@types/lodash-es@4.17.8)(lodash-es@4.17.21)(lodash@4.17.21): + resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==} + peerDependencies: + '@types/lodash-es': '*' + lodash: '*' + lodash-es: '*' + dependencies: + '@types/lodash-es': 4.17.8 + lodash: 4.17.21 + lodash-es: 4.17.21 + dev: false + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /loupe@2.3.6: + resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + dependencies: + get-func-name: 2.0.0 + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /magic-string@0.30.2: + resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + + /mdast-util-from-markdown@0.8.5: + resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + dependencies: + '@types/mdast': 3.0.12 + mdast-util-to-string: 2.0.0 + micromark: 2.11.4 + parse-entities: 2.0.0 + unist-util-stringify-position: 2.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-to-string@2.0.0: + resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} + dev: true + + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + dev: true + + /memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + dev: false + + /memorystream@0.3.1: + resolution: {integrity: sha1-htcJCzDORV1j+64S3aUaR93K+bI=} + engines: {node: '>= 0.10.0'} + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromark@2.11.4: + resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} + dependencies: + debug: 4.3.4 + parse-entities: 2.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /mlly@1.4.0: + resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} + dependencies: + acorn: 8.10.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + ufo: 1.1.2 + dev: true + + /mockjs@1.1.0: + resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==} + hasBin: true + dependencies: + commander: 10.0.1 + dev: true + + /mrmime@1.0.1: + resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} + engines: {node: '>=10'} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /muggle-string@0.3.1: + resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==} + dev: true + + /mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + dev: true + + /nanoid@3.3.6: + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /natural-compare-lite@1.4.0: + resolution: {integrity: sha1-F7CVgZiJef3a/gIB6TG6kzyWy7Q=} + dev: true + + /natural-compare@1.4.0: + resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + dev: true + + /nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /node-fetch-native@1.2.0: + resolution: {integrity: sha512-5IAMBTl9p6PaAjYCnMv5FmqIF6GcZnawAVnzaCG0rX2aYZJ4CxEkZNtVPuTRug7fL7wyM5BQYTlAzcyMPi6oTQ==} + dev: true + + /nopt@6.0.0: + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.2 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-wheel-es@1.2.0: + resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==} + dev: false + + /npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.5 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.1 + string.prototype.padend: 3.1.4 + dev: true + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /nwsapi@2.2.7: + resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + dev: true + + /object-assign@4.1.1: + resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} + engines: {node: '>=0.10.0'} + dev: true + + /object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + dev: true + + /object-inspect@1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /ofetch@1.1.1: + resolution: {integrity: sha512-SSMoktrp9SNLi20BWfB/BnnKcL0RDigXThD/mZBeQxkIRv1xrd9183MtLdsqRYLYSqW0eTr5t8w8MqjNhvoOQQ==} + dependencies: + destr: 2.0.0 + node-fetch-native: 1.2.0 + ufo: 1.1.2 + dev: true + + /once@1.4.0: + resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + yocto-queue: 1.0.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + dev: true + + /parse-json@4.0.0: + resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=} + engines: {node: '>=4'} + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.22.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.5.0 + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@2.0.1: + resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=} + engines: {node: '>=4'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + dependencies: + pify: 3.0.0 + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /pathe@1.1.1: + resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} + dev: true + + /pathval@1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + dev: true + + /perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + + /pify@2.3.0: + resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} + engines: {node: '>=0.10.0'} + dev: true + + /pify@3.0.0: + resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=} + engines: {node: '>=4'} + dev: true + + /pinia@2.1.4(typescript@5.1.6)(vue@3.3.4): + resolution: {integrity: sha512-vYlnDu+Y/FXxv1ABo1vhjC+IbqvzUdiUC3sfDRrRyY2CQSrqqaa+iiHmqtARFxJVqWQMCJfXx1PBvFs9aJVLXQ==} + peerDependencies: + '@vue/composition-api': ^1.4.0 + typescript: '>=4.4.4' + vue: ^2.6.14 || ^3.3.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + typescript: + optional: true + dependencies: + '@vue/devtools-api': 6.5.0 + typescript: 5.1.6 + vue: 3.3.4 + vue-demi: 0.14.5(vue@3.3.4) + dev: false + + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + dev: true + + /pkg-types@1.0.3: + resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} + dependencies: + jsonc-parser: 3.2.0 + mlly: 1.4.0 + pathe: 1.1.1 + dev: true + + /pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + dev: true + + /postcss-import@15.1.0(postcss@8.4.27): + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.2 + dev: true + + /postcss-js@4.0.1(postcss@8.4.27): + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.27 + dev: true + + /postcss-load-config@4.0.1(postcss@8.4.27): + resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.1.0 + postcss: 8.4.27 + yaml: 2.3.1 + dev: true + + /postcss-nested@6.0.1(postcss@8.4.27): + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 + dev: true + + /postcss-selector-parser@6.0.13: + resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + + /postcss@8.4.27: + resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /pretty-format@29.6.2: + resolution: {integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.6.0 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /proto-list@1.2.4: + resolution: {integrity: sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=} + dev: true + + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + + /punycode@2.3.0: + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + engines: {node: '>=6'} + dev: true + + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /react-is@18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: true + + /read-cache@1.0.0: + resolution: {integrity: sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=} + dependencies: + pify: 2.3.0 + dev: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@3.0.0: + resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=} + engines: {node: '>=4'} + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /regexp-tree@0.1.27: + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} + hasBin: true + dev: true + + /regexp.prototype.flags@1.5.0: + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + dev: true + + /regjsparser@0.10.0: + resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /requires-port@1.0.0: + resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + + /resolve@1.22.2: + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /resolve@1.22.3: + resolution: {integrity: sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==} + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup@3.27.0: + resolution: {integrity: sha512-aOltLCrYZ0FhJDm7fCqwTjIUEVjWjcydKBV/Zeid6Mn8BWgDCUBBWT5beM5ieForYNo/1ZHuGJdka26kvQ3Gzg==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /safe-array-concat@1.0.0: + resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-regex-test@1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-regex: 1.1.4 + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + dependencies: + xmlchars: 2.2.0 + dev: true + + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + dev: true + + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /shebang-command@1.2.0: + resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@1.0.0: + resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} + engines: {node: '>=0.10.0'} + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + object-inspect: 1.12.3 + dev: true + + /siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /sirv@2.0.3: + resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.21 + mrmime: 1.0.1 + totalist: 3.0.1 + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.13 + dev: true + + /spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.13 + dev: true + + /spdx-license-ids@3.0.13: + resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + dev: true + + /stackback@0.0.2: + resolution: {integrity: sha1-Gsig2Ug4SNFpXkGLbQMaPDzmjjs=} + dev: true + + /std-env@3.3.3: + resolution: {integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==} + dev: true + + /string.prototype.padend@3.1.4: + resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /string.prototype.trim@1.2.7: + resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /string.prototype.trimend@1.0.6: + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /string.prototype.trimstart@1.0.6: + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} + engines: {node: '>=4'} + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /strip-literal@1.0.1: + resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} + dependencies: + acorn: 8.10.0 + dev: true + + /sucrase@3.34.0: + resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} + engines: {node: '>=8'} + hasBin: true + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + commander: 4.1.1 + glob: 7.1.6 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true + + /tailwindcss@3.3.3: + resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.1 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.19.1 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.27 + postcss-import: 15.1.0(postcss@8.4.27) + postcss-js: 4.0.1(postcss@8.4.27) + postcss-load-config: 4.0.1(postcss@8.4.27) + postcss-nested: 6.0.1(postcss@8.4.27) + postcss-selector-parser: 6.0.13 + resolve: 1.22.2 + sucrase: 3.34.0 + transitivePeerDependencies: + - ts-node + dev: true + + /text-table@0.2.0: + resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + dev: true + + /thenify-all@1.6.0: + resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=} + engines: {node: '>=0.8'} + dependencies: + thenify: 3.3.1 + dev: true + + /thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + dependencies: + any-promise: 1.3.0 + dev: true + + /tinybench@2.5.0: + resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} + dev: true + + /tinypool@0.6.0: + resolution: {integrity: sha512-FdswUUo5SxRizcBc6b1GSuLpLjisa8N8qMyYoP3rl+bym+QauhtJP5bvZY1ytt8krKGmMLYIRl36HBZfeAoqhQ==} + engines: {node: '>=14.0.0'} + dev: true + + /tinyspy@2.1.1: + resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} + engines: {node: '>=14.0.0'} + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} + engines: {node: '>=4'} + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: true + + /tough-cookie@4.1.3: + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.3.0 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /tr46@4.1.1: + resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} + engines: {node: '>=14'} + dependencies: + punycode: 2.3.0 + dev: true + + /ts-api-utils@1.0.1(typescript@5.1.6): + resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==} + engines: {node: '>=16.13.0'} + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.1.6 + dev: true + + /ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tsutils@3.21.0(typescript@5.1.6): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 5.1.6 + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + + /typescript@5.1.6: + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} + engines: {node: '>=14.17'} + hasBin: true + + /ufo@1.1.2: + resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} + dev: true + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unconfig@0.3.9: + resolution: {integrity: sha512-8yhetFd48M641mxrkWA+C/lZU4N0rCOdlo3dFsyFPnBHBjMJfjT/3eAZBRT2RxCRqeBMAKBVgikejdS6yeBjMw==} + dependencies: + '@antfu/utils': 0.7.5 + defu: 6.1.2 + jiti: 1.19.1 + dev: true + + /unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + dependencies: + '@types/unist': 2.0.7 + dev: true + + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + + /unocss@0.54.0(postcss@8.4.27)(vite@4.4.6): + resolution: {integrity: sha512-SXjyQqt/MP1uW8mjEmQaSa0zd+QB3FwaGD/ityNlu+zNRx1D03BPP9ACbJDB1zZKx4aodMVSsHZ3TV5wsu+VRQ==} + engines: {node: '>=14'} + peerDependencies: + '@unocss/webpack': 0.54.0 + peerDependenciesMeta: + '@unocss/webpack': + optional: true + dependencies: + '@unocss/astro': 0.54.0(vite@4.4.6) + '@unocss/cli': 0.54.0 + '@unocss/core': 0.54.0 + '@unocss/extractor-arbitrary-variants': 0.54.0 + '@unocss/postcss': 0.54.0(postcss@8.4.27) + '@unocss/preset-attributify': 0.54.0 + '@unocss/preset-icons': 0.54.0 + '@unocss/preset-mini': 0.54.0 + '@unocss/preset-tagify': 0.54.0 + '@unocss/preset-typography': 0.54.0 + '@unocss/preset-uno': 0.54.0 + '@unocss/preset-web-fonts': 0.54.0 + '@unocss/preset-wind': 0.54.0 + '@unocss/reset': 0.54.0 + '@unocss/transformer-attributify-jsx': 0.54.0 + '@unocss/transformer-attributify-jsx-babel': 0.54.0 + '@unocss/transformer-compile-class': 0.54.0 + '@unocss/transformer-directives': 0.54.0 + '@unocss/transformer-variant-group': 0.54.0 + '@unocss/vite': 0.54.0(vite@4.4.6) + transitivePeerDependencies: + - postcss + - rollup + - supports-color + - vite + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.0 + dev: true + + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /vite-node@0.33.0(@types/node@18.17.0): + resolution: {integrity: sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==} + engines: {node: '>=v14.18.0'} + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4 + mlly: 1.4.0 + pathe: 1.1.1 + picocolors: 1.0.0 + vite: 4.4.6(@types/node@18.17.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite@4.4.6(@types/node@18.17.0): + resolution: {integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 18.17.0 + esbuild: 0.18.17 + postcss: 8.4.27 + rollup: 3.27.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vitest@0.33.0(jsdom@22.1.0): + resolution: {integrity: sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==} + engines: {node: '>=v14.18.0'} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + happy-dom: '*' + jsdom: '*' + playwright: '*' + safaridriver: '*' + webdriverio: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + playwright: + optional: true + safaridriver: + optional: true + webdriverio: + optional: true + dependencies: + '@types/chai': 4.3.5 + '@types/chai-subset': 1.3.3 + '@types/node': 18.17.0 + '@vitest/expect': 0.33.0 + '@vitest/runner': 0.33.0 + '@vitest/snapshot': 0.33.0 + '@vitest/spy': 0.33.0 + '@vitest/utils': 0.33.0 + acorn: 8.10.0 + acorn-walk: 8.2.0 + cac: 6.7.14 + chai: 4.3.7 + debug: 4.3.4 + jsdom: 22.1.0 + local-pkg: 0.4.3 + magic-string: 0.30.2 + pathe: 1.1.1 + picocolors: 1.0.0 + std-env: 3.3.3 + strip-literal: 1.0.1 + tinybench: 2.5.0 + tinypool: 0.6.0 + vite: 4.4.6(@types/node@18.17.0) + vite-node: 0.33.0(@types/node@18.17.0) + why-is-node-running: 2.2.2 + transitivePeerDependencies: + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vue-component-type-helpers@1.8.4: + resolution: {integrity: sha512-6bnLkn8O0JJyiFSIF0EfCogzeqNXpnjJ0vW/SZzNHfe6sPx30lTtTXlE5TFs2qhJlAtDFybStVNpL73cPe3OMQ==} + dev: true + + /vue-demi@0.14.5(vue@3.3.4): + resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + dependencies: + vue: 3.3.4 + dev: false + + /vue-eslint-parser@9.3.1(eslint@8.45.0): + resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.45.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.2 + espree: 9.6.1 + esquery: 1.5.0 + lodash: 4.17.21 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + dev: true + + /vue-router@4.2.4(vue@3.3.4): + resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==} + peerDependencies: + vue: ^3.2.0 + dependencies: + '@vue/devtools-api': 6.5.0 + vue: 3.3.4 + dev: false + + /vue-template-compiler@2.7.14: + resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + dev: true + + /vue-tsc@1.8.6(typescript@5.1.6): + resolution: {integrity: sha512-8ffD4NGfwyATjw/s40Lw2EgB7L2/PAqnGlJBaVQLgblr3SU4EYdhJ67TNXXuDD8NMbDAFSM24V8i3ZIJgTs32Q==} + hasBin: true + peerDependencies: + typescript: '*' + dependencies: + '@vue/language-core': 1.8.6(typescript@5.1.6) + '@vue/typescript': 1.8.6(typescript@5.1.6) + semver: 7.5.4 + typescript: 5.1.6 + dev: true + + /vue@3.3.4: + resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==} + dependencies: + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-sfc': 3.3.4 + '@vue/runtime-dom': 3.3.4 + '@vue/server-renderer': 3.3.4(vue@3.3.4) + '@vue/shared': 3.3.4 + + /vxe-table@4.4.7(vue@3.3.4)(xe-utils@3.5.11): + resolution: {integrity: sha512-bevKBbUD/wXGPnadAKGRPn/GI/MDWIRBfADXxRFzp6pPmUuT018UUtSx0iwIQ7kwuyi21+yUMvJzPgpWH92YjA==} + peerDependencies: + vue: ^3.2.28 + xe-utils: ^3.5.0 + dependencies: + vue: 3.3.4 + xe-utils: 3.5.11 + dev: false + + /w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + dependencies: + xml-name-validator: 4.0.0 + dev: true + + /webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true + + /whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + dependencies: + iconv-lite: 0.6.3 + dev: true + + /whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true + + /whatwg-url@12.0.1: + resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} + engines: {node: '>=14'} + dependencies: + tr46: 4.1.1 + webidl-conversions: 7.0.0 + dev: true + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-typed-array@1.1.11: + resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /why-is-node-running@2.2.2: + resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} + engines: {node: '>=8'} + hasBin: true + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + dev: true + + /ws@8.13.0: + resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /xe-utils@3.5.11: + resolution: {integrity: sha512-lyKc/lTBga1Zb63p+FED8mtxLnYIjSS8PVJM1N64NGdCu/3d1XubaVeke2p91RHssP0ExVAl2LUqZYperoz76Q==} + dev: false + + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + + /xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml-eslint-parser@1.2.2: + resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} + engines: {node: ^14.17.0 || >=16.0.0} + dependencies: + eslint-visitor-keys: 3.4.2 + lodash: 4.17.21 + yaml: 2.3.1 + dev: true + + /yaml@2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + engines: {node: '>= 14'} + dev: true + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true + + /yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} + dev: true diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..032be2e --- /dev/null +++ b/src/App.vue @@ -0,0 +1,7 @@ + + + diff --git a/src/assets/base.css b/src/assets/base.css new file mode 100644 index 0000000..5e586b0 --- /dev/null +++ b/src/assets/base.css @@ -0,0 +1,71 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, + Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; + font-size: 14px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..7565660 --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/src/assets/main.css b/src/assets/main.css new file mode 100644 index 0000000..a152199 --- /dev/null +++ b/src/assets/main.css @@ -0,0 +1 @@ +@import './base.css'; diff --git a/src/components/waterFall/index.vue b/src/components/waterFall/index.vue new file mode 100644 index 0000000..18153c8 --- /dev/null +++ b/src/components/waterFall/index.vue @@ -0,0 +1,130 @@ + + + diff --git a/src/components/waterFall/waterFallItem.vue b/src/components/waterFall/waterFallItem.vue new file mode 100644 index 0000000..86a74ca --- /dev/null +++ b/src/components/waterFall/waterFallItem.vue @@ -0,0 +1,28 @@ + + + + + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..acccede --- /dev/null +++ b/src/main.ts @@ -0,0 +1,17 @@ +import './assets/main.css' +import 'element-plus/dist/index.css' + +import 'virtual:uno.css' + +import { createApp } from 'vue' +import { createPinia } from 'pinia' + +import App from './App.vue' +import router from './router' + +const app = createApp(App) + +app.use(createPinia()) +app.use(router) + +app.mount('#app') diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..4fcb8f0 --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,14 @@ +import { createRouter, createWebHistory } from 'vue-router' + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: '/', + name: 'home', + component: () => import('@/App.vue') + }, + ] +}) + +export default router diff --git a/src/stores/counter.ts b/src/stores/counter.ts new file mode 100644 index 0000000..b6757ba --- /dev/null +++ b/src/stores/counter.ts @@ -0,0 +1,12 @@ +import { ref, computed } from 'vue' +import { defineStore } from 'pinia' + +export const useCounterStore = defineStore('counter', () => { + const count = ref(0) + const doubleCount = computed(() => count.value * 2) + function increment() { + count.value++ + } + + return { count, doubleCount, increment } +}) diff --git a/src/test.json b/src/test.json new file mode 100644 index 0000000..d4fd1cd --- /dev/null +++ b/src/test.json @@ -0,0 +1,27116 @@ +[ + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010101", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240976", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686929771025805315", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686998505606254593", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240841", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686922845298765826", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240787", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686917812297543683", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240030", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686279107442593795", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240005", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686269568852905987", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 1, + "id": "1687355100299173890", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687033788217331715", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240338", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686634805057753090", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240176", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686569903261683713", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240121", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 2, + "id": "1686298534456283138", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686944704627093506", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240764", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686915329286352899", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687395853054476292", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240924", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 1, + "id": "1686927382243848193", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240423", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686641067807936513", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240197", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686571292381614082", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240315", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686632383233069057", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240145", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 2, + "id": "1686306809537056769", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240102", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686295224676470786", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240239", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686577050032738308", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240358", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686636266349072386", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240275", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686624299618078722", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687289908060135425", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240297", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686629790716989443", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240376", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686638466651590658", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687290324856512516", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687379292935675906", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687373440996597761", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240605", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686652450847002625", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240489", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686645084344750085", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240811", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686920436543533058", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240624", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686666333632532482", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240257", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686622750430924801", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687376593527758851", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686996913318432772", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240558", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686649596837040130", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687350634690813954", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240217", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686572455361449986", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1688448895573028866", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1687396523417501698", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1688367911183749121", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568852905986", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240443", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686643266382401541", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240573", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010101", + "deptOneUp": 0, + "id": "1686651062733705217", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568852905986", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "SCI论文", + "isSum": 2, + "projectId": "1683801821363539969", + "ts": "2023-08-04 15:32:58" + } + ], + "deptOneUp": 6, + "id": "1686269568852905986", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "SCI论文", + "isSum": 1, + "projectId": "1683801821363539969", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010102", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240985", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 1, + "id": "1686929771222937603", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686998505803386882", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240849", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686922845428789251", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240795", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686917812503064577", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240038", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686279107572617220", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240013", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 1, + "id": "1686269569003900936", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687355100496306177", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687033788477378562", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240346", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686634805187776515", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240184", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686569903446233089", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240129", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 2, + "id": "1686298534586306564", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686944704849391619", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240772", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686915329445736451", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687395853318717441", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240932", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 2, + "id": "1686927382373871617", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240431", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686641067942154243", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240205", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686571292511637508", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240322", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 1, + "id": "1686632383308566533", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240152", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 2, + "id": "1686306809629331459", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240109", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686295224739385348", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240246", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686577050229870593", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240365", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686636266479095812", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240282", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686624299689381893", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687289908257267713", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240304", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686629790876372994", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240383", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686638466722893828", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687290325145919490", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687379293132808193", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687373441151787010", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240612", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686652450977026049", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240496", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686645084499939332", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240818", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 1, + "id": "1686920436673556484", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240631", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686666333762555907", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240264", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686622750560948226", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687376593729085441", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686996913448456196", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240565", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686649596975452163", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687350634900529153", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240224", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686572455512444931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1688448895770161153", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1687396523551719427", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1688367911338938370", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569003900935", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240450", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 0, + "id": "1686643266579533826", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240063", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010102", + "deptOneUp": 1, + "id": "1686282705408839682", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569003900935", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "北大核心期刊论文", + "isSum": 2, + "projectId": "1683801821363539970", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 11, + "id": "1686269569003900935", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "北大核心期刊论文", + "isSum": 1, + "projectId": "1683801821363539970", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010103", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240982", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686929771155828739", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686998505736278017", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240846", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686922845361680386", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240792", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686917812427567106", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240035", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686279107505508356", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240010", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 2, + "id": "1686269569003900930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1687355100433391618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1687033788414464002", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240343", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686634805120667652", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240181", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686569903358152705", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240126", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 3, + "id": "1686298534519197701", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686944704719368195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240769", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686915329382821890", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687395853184499715", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240929", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 2, + "id": "1686927382310957058", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240428", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686641067875045379", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240202", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686571292444528643", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240320", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686632383308566531", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240150", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 2, + "id": "1686306809562222596", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240107", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 2, + "id": "1686295224739385346", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240244", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686577050162761731", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240363", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686636266479095810", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240280", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686624299689381891", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687289908190158850", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240302", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 1, + "id": "1686629790813458436", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240381", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686638466722893826", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687290325083004931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687379293069893634", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687373441084678147", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240610", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686652450909917187", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240494", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686645084499939330", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240816", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686920436673556482", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240629", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686666333762555905", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240262", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686622750493839363", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687376593678753794", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686996913448456194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240563", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686649596912537602", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687350634820837379", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240222", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686572455512444929", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1688448895703052289", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1687396523551719425", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1688367911317966850", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568936792068", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240448", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 0, + "id": "1686643266512424962", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240060", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010103", + "deptOneUp": 2, + "id": "1686282705345925123", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568936792068", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "统计源期刊论文", + "isSum": 2, + "projectId": "1683801821430648833", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 21, + "id": "1686269568936792068", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "统计源期刊论文", + "isSum": 1, + "projectId": "1683801821430648833", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010104", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240983", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 3, + "id": "1686929771155828740", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 3, + "id": "1686998505736278018", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240847", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 10, + "id": "1686922845361680387", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240793", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 3, + "id": "1686917812427567107", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240036", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 6, + "id": "1686279107572617218", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240011", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686269569003900932", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 1, + "id": "1687355100433391619", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 3, + "id": "1687033788414464003", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240344", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 8, + "id": "1686634805120667653", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240182", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 10, + "id": "1686569903374929922", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240127", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 10, + "id": "1686298534586306562", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 6, + "id": "1686944704782282753", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240770", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 15, + "id": "1686915329382821891", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 5, + "id": "1687395853251608577", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240930", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686927382310957059", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240429", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686641067942154241", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240203", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 5, + "id": "1686571292511637506", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240321", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686632383308566532", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240151", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 15, + "id": "1686306809629331458", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240108", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 5, + "id": "1686295224739385347", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240245", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686577050162761732", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240364", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 5, + "id": "1686636266479095811", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240281", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686624299689381892", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1687289908190158851", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240303", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686629790813458437", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240382", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686638466722893827", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1687290325083004932", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1687379293069893635", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 1, + "id": "1687373441084678148", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240611", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686652450909917188", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240495", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1686645084499939331", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240817", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 1, + "id": "1686920436673556483", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240630", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686666333762555906", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240263", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686622750493839364", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 1, + "id": "1687376593699725314", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 1, + "id": "1686996913448456195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "deptOneUpRemark": "期刊", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240564", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686649596975452162", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1687350634820837380", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240223", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686572455512444930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1688448895703052290", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 2, + "id": "1687396523551719426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1688367911338938369", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569003900931", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240449", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 0, + "id": "1686643266512424963", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240061", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010104", + "deptOneUp": 5, + "id": "1686282705345925124", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569003900931", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "普刊论文", + "isSum": 2, + "projectId": "1683801821430648834", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 140, + "id": "1686269569003900931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "普刊论文", + "isSum": 1, + "projectId": "1683801821430648834", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010199", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240989", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 5, + "id": "1686929771285852164", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686998505891467265", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240853", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 5, + "id": "1686922845491703811", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240799", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686917812578562049", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240042", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686279107635531779", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240017", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 2, + "id": "1686269569071009799", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 6, + "id": "1687355100575997954", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 3, + "id": "1687033788611596289", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240350", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686634805254885380", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240188", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686569903530119169", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240133", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 11, + "id": "1686298534653415428", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 1, + "id": "1686944704916500484", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240776", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686915329512845316", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1687395853381632003", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240936", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 3, + "id": "1686927382440980482", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240435", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 2, + "id": "1686641068005068805", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240209", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 2, + "id": "1686571292641660929", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240325", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686632383375675396", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240155", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 8, + "id": "1686306809696440323", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240112", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686295224806494211", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240249", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686577050292785154", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240368", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686636266546204674", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240285", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686624299756490756", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1687289908320182274", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240307", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 1, + "id": "1686629790943481857", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240386", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686638466790002692", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 3, + "id": "1687290325213028353", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 1, + "id": "1687379293212499970", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1687373441218895874", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240615", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 1, + "id": "1686652451060912130", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240499", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 2, + "id": "1686645084629962753", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240821", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686920436736471042", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240634", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686666333896773633", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240267", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686622750628057090", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1687376593741668355", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686996913515565059", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240568", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686649597042561026", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 2, + "id": "1687350634913112068", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240227", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686572455575359491", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1688448895799521282", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 1, + "id": "1687396523681742849", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1688367911406047234", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569071009798", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240453", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686643266579533829", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240067", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010199", + "deptOneUp": 0, + "id": "1686282705475948547", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569071009798", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "其他论文", + "isSum": 2, + "projectId": "1683801821493563393", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 59, + "id": "1686269569071009798", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "其他论文", + "isSum": 1, + "projectId": "1683801821493563393", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010201", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240991", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686929771352961027", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686998505895661571", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240855", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686922845567201281", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240801", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686917812578562051", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240044", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686279107702640643", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240019", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686269569133924356", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687355100575997956", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687033788611596291", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240352", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686634805317799938", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240190", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686569903567867905", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240135", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 10, + "id": "1686298534716329986", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686944704979415042", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240778", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686915329575759874", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687395853448740867", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240938", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 3, + "id": "1686927382440980484", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240437", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686641068072177667", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240211", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686571292641660931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240327", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686632383438589955", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240157", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 3, + "id": "1686306809696440325", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240114", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686295224881991682", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240251", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686577050372476930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240370", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686636266613313537", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240287", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686624299819405315", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687289908391485442", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240309", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686629790943481859", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240388", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686638466857111554", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687290325213028355", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687379293216694275", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687373441218895876", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240617", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686652451069300738", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240501", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686645084629962755", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240823", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686920436803579905", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240636", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686666333896773635", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240269", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686622750628057092", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687376593808777219", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686996913582673923", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240570", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686649597105475587", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687350634980220931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240229", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686572455642468355", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1688448895866630147", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1687396523681742851", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1688367911473156098", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569133924355", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240455", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686643266646642690", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240069", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010201", + "deptOneUp": 0, + "id": "1686282705475948549", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569133924355", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著主编", + "isSum": 2, + "projectId": "1683801821560672258", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 16, + "id": "1686269569133924355", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "撰写专著主编", + "isSum": 1, + "projectId": "1683801821560672258", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010202", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240993", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686929771352961029", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686998505962770433", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240857", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686922845567201283", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240803", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686917812645670915", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240046", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686279107702640645", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240021", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686269569201033217", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 1, + "id": "1687355100647301123", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687033788682899459", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240354", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686634805317799940", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240192", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686569903605616642", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240137", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 8, + "id": "1686298534716329988", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 1, + "id": "1686944705046523907", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240780", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686915329642868738", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687395853511655426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240940", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 3, + "id": "1686927382503895043", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240439", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686641068147675137", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240213", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686571292708769795", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240329", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686632383505698818", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240159", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 3, + "id": "1686306809759354883", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240116", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686295224898768899", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240253", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686577050372476932", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240372", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 1, + "id": "1686636266613313539", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240289", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686624299886514178", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687289908399874050", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240311", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 1, + "id": "1686629791006396419", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240390", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686638466920026113", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687290325275942914", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687379293283803138", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687373441281810435", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240619", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686652451136409602", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240503", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686645084697071618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240825", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686920436803579907", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240638", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686666333959688195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240271", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686622750690971649", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687376593871691778", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686996913645588482", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240572", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686649597172584450", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687350635043135490", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240231", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686572455705382913", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1688448895933739009", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1687396523748851715", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1688367911536070657", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569133924359", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240457", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 0, + "id": "1686643266709557249", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240071", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010202", + "deptOneUp": 1, + "id": "1686282705538863107", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569133924359", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著副主编", + "isSum": 2, + "projectId": "1683801821560672259", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 19, + "id": "1686269569133924359", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "撰写专著副主编", + "isSum": 1, + "projectId": "1683801821560672259", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010203", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240981", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 1, + "id": "1686929771155828738", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686998505673363460", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240845", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686922845361680385", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240791", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 1, + "id": "1686917812364652548", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240034", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686279107505508355", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240009", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686269568936792067", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 1, + "id": "1687355100366282755", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687033788347355139", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240342", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686634805120667651", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240180", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686569903341375490", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240125", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 8, + "id": "1686298534519197700", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 2, + "id": "1686944704719368194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240768", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686915329382821889", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687395853184499714", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240928", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 3, + "id": "1686927382310957057", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240427", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686641067875045378", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240201", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686571292444528642", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240319", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686632383308566530", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240149", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 3, + "id": "1686306809562222595", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240106", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686295224739385345", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240243", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686577050162761730", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240362", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686636266416181252", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240279", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686624299689381890", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687289908127244291", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240301", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 1, + "id": "1686629790813458435", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240380", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686638466722893825", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687290325083004930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687379293002784771", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687373441084678146", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240609", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686652450909917186", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240493", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686645084495745025", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240815", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686920436606447620", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240628", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686666333699641348", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240261", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686622750493839362", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687376593590673411", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686996913385541635", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240562", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686649596912537601", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687350634820837378", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240221", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686572455504056321", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1688448895640137732", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1687396523484610563", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1688367911246663683", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568936792066", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240447", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686643266512424961", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240059", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010203", + "deptOneUp": 0, + "id": "1686282705345925122", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568936792066", + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "撰写专著编委", + "isSum": 2, + "projectId": "1683801821627781122", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 20, + "id": "1686269568936792066", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "篇次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "撰写专著编委", + "isSum": 1, + "projectId": "1683801821627781122", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010301", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240977", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 2, + "id": "1686929771088719874", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686998505606254594", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240842", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 2, + "id": "1686922845298765827", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240788", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 1, + "id": "1686917812364652545", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240031", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686279107442593796", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240006", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 1, + "id": "1686269568852905989", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 2, + "id": "1687355100299173891", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687033788280246273", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240339", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 4, + "id": "1686634805057753091", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240177", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686569903282655234", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240122", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 3, + "id": "1686298534456283139", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 3, + "id": "1686944704627093507", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240765", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 4, + "id": "1686915329286352900", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687395853121585153", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240925", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686927382243848194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240424", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686641067807936514", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240198", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686571292381614083", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240316", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686632383233069058", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240146", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686306809553833985", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240103", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686295224676470787", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240240", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686577050099847170", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240359", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686636266349072387", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240276", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686624299622273026", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687289908060135426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240298", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686629790716989444", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240377", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686638466651590659", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687290324856512517", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687379292935675907", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687373441021763586", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240606", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686652450847002626", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240490", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686645084411858945", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240812", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686920436543533059", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240625", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686666333632532483", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240258", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686622750430924802", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687376593527758852", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686996913318432773", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240559", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 1, + "id": "1686649596845428738", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687350634690813955", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240218", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686572455424364545", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1688448895573028867", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1687396523417501699", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1688367911183749122", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568852905988", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240444", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 0, + "id": "1686643266449510402", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240056", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010301", + "deptOneUp": 1, + "id": "1686282705278816260", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568852905988", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历本科", + "isSum": 2, + "projectId": "1683801821694889986", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 24, + "id": "1686269568852905988", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "在职升学历本科", + "isSum": 1, + "projectId": "1683801821694889986", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010302", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240979", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1686929771088719876", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 3, + "id": "1686998505673363458", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240844", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686922845298765829", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240790", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1686917812364652547", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240033", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1686279107505508354", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240008", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686269568936792065", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687355100366282754", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687033788347355137", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240341", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1686634805120667650", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240179", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1686569903324598274", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240124", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686298534519197699", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686944704719368193", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240767", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686915329366044673", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687395853184499713", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240927", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686927382243848196", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240426", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686641067875045377", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240200", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686571292444528641", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240318", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686632383233069060", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240148", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686306809562222594", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240105", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686295224676470789", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240242", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686577050099847172", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240361", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686636266416181251", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240278", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686624299622273028", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687289908127244290", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240300", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686629790813458434", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240379", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686638466651590661", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687290325015896067", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687379293002784770", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687373441021763588", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240608", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686652450909917185", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240492", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686645084411858947", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240814", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686920436606447619", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240627", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686666333699641347", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240260", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686622750493839361", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687376593590673410", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686996913385541634", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240561", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686649596845428740", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1687350634753728514", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240220", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686572455424364547", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1688448895640137731", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 1, + "id": "1687396523484610562", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1688367911246663682", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568924209153", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240446", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 0, + "id": "1686643266449510404", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240058", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010302", + "deptOneUp": 2, + "id": "1686282705345925121", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568924209153", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历研究生", + "isSum": 2, + "projectId": "1683801821694889987", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 21, + "id": "1686269568924209153", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "在职升学历研究生", + "isSum": 1, + "projectId": "1683801821694889987", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102010303", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240973", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686929770958696450", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686998505539145730", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240838", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686922845231656961", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240784", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686917812230434818", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240027", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686279107375484930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240002", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686269568789991425", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687355100236259331", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687033788150222849", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240335", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686634804990644225", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240173", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686569903190380546", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240118", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 1, + "id": "1686298534389174273", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686944704559984641", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240761", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686915329223438337", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687395852991561731", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240921", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686927382151573507", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-06 17:43:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240420", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686641067677913091", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240194", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686571292314505218", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240312", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686632383103045633", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240142", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686306809469947905", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240099", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686295224609361921", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240236", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686577049965629441", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240355", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686636266286157825", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240272", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686624299483860994", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687289907988832258", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240294", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686629790654074881", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240373", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686638466517372929", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687290324856512513", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687379292872761346", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687373440862380034", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240602", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686652450779893761", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240486", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686645084344750082", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240808", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686920436476424194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:13:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240621", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686666333502509058", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240254", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686622750359621634", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687376593460649986", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686996913297461249", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240555", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686649596686045185", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687350634623705089", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240214", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686572455294341121", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1688448895443005442", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1687396523346198530", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1688367911049531394", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568722882562", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240440", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686643266382401538", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240052", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102010303", + "deptOneUp": 0, + "id": "1686282705211707394", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568722882562", + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "在职升学历博士", + "isSum": 2, + "projectId": "1683801821694889988", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 1, + "id": "1686269568722882562", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "在职升学历博士", + "isSum": 1, + "projectId": "1683801821694889988", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102020101", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240974", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686929771025805313", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686998505539145731", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240839", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 3, + "id": "1686922845231656962", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240785", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686917812297543681", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240028", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686279107375484931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240003", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686269568789991427", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 1, + "id": "1687355100236259332", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687033788150222850", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240336", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 1, + "id": "1686634804990644226", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240174", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686569903190380547", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240119", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 4, + "id": "1686298534389174274", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 1, + "id": "1686944704559984642", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240762", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686915329223438338", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687395853054476290", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240922", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 2, + "id": "1686927382151573508", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-06 17:43:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240421", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686641067745021953", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240195", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686571292314505219", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240313", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686632383170154498", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240143", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 5, + "id": "1686306809469947906", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240100", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686295224609361922", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240237", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686577050032738306", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240356", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686636266286157826", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240273", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686624299550969857", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687289907988832259", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240295", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686629790654074882", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240374", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686638466584481794", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687290324856512514", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687379292872761347", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687373440929488898", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240603", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686652450779893762", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240487", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686645084344750083", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240809", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686920436476424195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:13:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240622", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686666333565423618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240255", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686622750359621635", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687376593460649987", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686996913318432770", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240556", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686649596753154049", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687350634623705090", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240215", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686572455294341122", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1688448895510114305", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1687396523409113090", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1688367911116640257", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568789991426", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240441", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686643266382401539", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240053", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020101", + "deptOneUp": 0, + "id": "1686282705211707395", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568789991426", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "发明专利", + "isSum": 2, + "projectId": "1683801821887827969", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 17, + "id": "1686269568789991426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "发明专利", + "isSum": 1, + "projectId": "1683801821887827969", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102020102", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240988", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686929771285852163", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686998505870495746", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240852", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686922845491703810", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240798", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 10, + "id": "1686917812507258884", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240041", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686279107635531778", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240016", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 1, + "id": "1686269569071009797", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 1, + "id": "1687355100563415042", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687033788544487427", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240349", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 6, + "id": "1686634805254885379", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240187", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686569903504953345", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240132", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 8, + "id": "1686298534653415427", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 9, + "id": "1686944704916500483", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240775", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686915329512845315", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687395853381632002", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240935", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686927382440980481", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240434", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686641068005068804", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240208", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686571292578746371", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240324", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686632383375675395", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240154", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 5, + "id": "1686306809696440322", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240111", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686295224806494210", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240248", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686577050229870595", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240367", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686636266546204673", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240284", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686624299756490755", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687289908257267715", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240306", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 1, + "id": "1686629790876372996", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240385", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 1, + "id": "1686638466790002691", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687290325145919492", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687379293132808195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687373441151787012", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240614", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686652450977026051", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240498", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 3, + "id": "1686645084567048194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240820", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686920436736471041", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240633", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686666333829664770", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240266", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686622750560948228", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687376593741668354", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686996913515565058", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240567", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686649597042561025", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687350634913112067", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240226", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686572455575359490", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1688448895799521281", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1687396523614633987", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1688367911406047233", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569071009796", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240452", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 0, + "id": "1686643266579533828", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240066", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020102", + "deptOneUp": 2, + "id": "1686282705475948546", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569071009796", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "实用新型专利", + "isSum": 2, + "projectId": "1683801821887827970", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 57, + "id": "1686269569071009796", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "实用新型专利", + "isSum": 1, + "projectId": "1683801821887827970", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "900102020103", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240987", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686929771285852162", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686998505803386884", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240851", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686922845428789253", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240797", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 2, + "id": "1686917812507258883", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240040", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686279107635531777", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240015", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686269569071009795", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 1, + "id": "1687355100496306179", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687033788544487426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240348", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686634805254885378", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240186", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686569903488176130", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240131", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 6, + "id": "1686298534653415426", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 2, + "id": "1686944704916500482", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240774", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686915329512845314", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687395853381632001", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240934", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 2, + "id": "1686927382373871619", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240433", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686641068005068803", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240207", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686571292578746370", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240323", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686632383375675394", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240153", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 5, + "id": "1686306809629331460", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240110", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686295224806494209", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240247", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686577050229870594", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240366", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686636266479095813", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240283", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686624299756490754", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687289908257267714", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240305", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 1, + "id": "1686629790876372995", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240384", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686638466790002690", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687290325145919491", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687379293132808194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687373441151787011", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240613", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686652450977026050", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240497", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686645084567048193", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240819", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686920436673556485", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240632", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686666333829664769", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240265", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686622750560948227", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687376593741668353", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686996913515565057", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240566", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686649596975452164", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687350634913112066", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240225", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686572455575359489", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1688448895795326977", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1687396523614633986", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1688367911338938371", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569071009794", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240451", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686643266579533827", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240065", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "900102020103", + "deptOneUp": 0, + "id": "1686282705408839684", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569071009794", + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外观设计专利", + "isSum": 2, + "projectId": "1683801821954936833", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 19, + "id": "1686269569071009794", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "项", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "外观设计专利", + "isSum": 1, + "projectId": "1683801821954936833", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "9001020301", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240992", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 4, + "id": "1686929771352961028", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 21, + "id": "1686998505895661572", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240856", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 30, + "id": "1686922845567201282", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240802", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686917812645670914", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240045", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 15, + "id": "1686279107702640644", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240020", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686269569133924358", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 24, + "id": "1687355100647301122", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 18, + "id": "1687033788682899458", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240353", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 18, + "id": "1686634805317799939", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240191", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686569903584645122", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240136", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 30, + "id": "1686298534716329987", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 18, + "id": "1686944705046523906", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240779", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 26, + "id": "1686915329575759875", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1687395853511655425", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240939", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1686927382503895042", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240438", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 3, + "id": "1686641068072177668", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240212", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1686571292708769794", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240328", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 21, + "id": "1686632383438589956", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240158", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 24, + "id": "1686306809759354882", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240115", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686295224898768898", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240252", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 0.5, + "id": "1686577050372476931", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240371", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686636266613313538", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240288", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686624299819405316", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1687289908399874049", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240310", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1686629791006396418", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240389", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686638466857111555", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687290325275942913", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687379293216694276", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687373441281810434", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240618", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1686652451069300739", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240502", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686645084697071617", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240824", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 3, + "id": "1686920436803579906", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240637", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686666333959688194", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240270", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 6, + "id": "1686622750628057093", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687376593808777220", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686996913582673924", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240571", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686649597105475588", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687350634980220932", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240230", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686572455642468356", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1688448895866630148", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1687397118132060162", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 17:36:43" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1688367911473156099", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569133924357", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240456", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 0, + "id": "1686643266646642691", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240070", + "explanation": "培训费:需要填报科室外出培训全员的总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020301", + "deptOneUp": 12, + "id": "1686282705538863106", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569133924357", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822017851393", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 375.5, + "id": "1686269569133924357", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 1, + "projectId": "1683801822017851393", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "9001020302", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240990", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686929771352961026", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686998505895661570", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240854", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686922845491703812", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240800", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686917812578562050", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240043", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686279107702640642", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240018", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686269569133924354", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1687355100575997955", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 22, + "id": "1687033788611596290", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240351", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 2, + "id": "1686634805317799937", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240189", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686569903542702081", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240134", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 2, + "id": "1686298534653415429", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686944704979415041", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240777", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 2, + "id": "1686915329575759873", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 2, + "id": "1687395853448740866", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240937", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 2, + "id": "1686927382440980483", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240436", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686641068072177666", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240210", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686571292641660930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240326", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686632383438589954", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240156", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 3, + "id": "1686306809696440324", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240113", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686295224806494212", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240250", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686577050292785155", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240369", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686636266546204675", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240286", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686624299819405314", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687289908320182275", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240308", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686629790943481858", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240387", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686638466857111553", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1687290325213028354", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687379293216694274", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687373441218895875", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240616", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686652451069300737", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240500", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686645084629962754", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240822", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686920436736471043", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240635", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686666333896773634", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240268", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686622750628057091", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687376593808777218", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686996913582673922", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240569", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686649597105475586", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687350634980220930", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240228", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686572455642468354", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1688448895866630146", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1687396523681742850", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1688367911473156097", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269569133924353", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240454", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 0, + "id": "1686643266646642689", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240068", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020302", + "deptOneUp": 1, + "id": "1686282705475948548", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569133924353", + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "省市区继教项目", + "isSum": 2, + "projectId": "1683801822017851394", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 47, + "id": "1686269569133924353", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "次", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "省市区继教项目", + "isSum": 1, + "projectId": "1683801822017851394", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "9001020401", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240978", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 4, + "id": "1686929771088719875", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 21, + "id": "1686998505606254595", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240843", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 30, + "id": "1686922845298765828", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240789", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686917812364652546", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240032", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686279107505508353", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240007", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686269568852905991", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 24, + "id": "1687355100366282753", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 25, + "id": "1687033788280246274", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240340", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 14, + "id": "1686634805057753092", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240178", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686569903303626753", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240123", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 24, + "id": "1686298534519197698", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 18, + "id": "1686944704702590977", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240766", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 26, + "id": "1686915329286352901", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1687395853121585154", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240926", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1686927382243848195", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240425", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 3, + "id": "1686641067807936515", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240199", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1686571292381614084", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240317", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 21, + "id": "1686632383233069059", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240147", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 24, + "id": "1686306809562222593", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240104", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 10, + "id": "1686295224676470788", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240241", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 1, + "id": "1686577050099847171", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240360", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686636266416181250", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240277", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686624299622273027", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1687289908127244289", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240299", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1686629790800875521", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240378", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686638466651590660", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687290325015896066", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687379293002784769", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687373441021763587", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240607", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1686652450847002627", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240491", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686645084411858946", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240813", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 2, + "id": "1686920436606447618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240626", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686666333699641346", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240259", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 6, + "id": "1686622750430924803", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687376593590673409", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686996913385541633", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240560", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686649596845428739", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687350634753728513", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240219", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686572455424364546", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1688448895640137730", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1687397118132060161", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 17:36:43" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1688367911183749123", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568852905990", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240445", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 0, + "id": "1686643266449510403", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240057", + "explanation": "差旅费:需要填报科室外出培训全员的差旅总体月数", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020401", + "deptOneUp": 12, + "id": "1686282705278816261", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568852905990", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822084960259", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 367, + "id": "1686269568852905990", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 1, + "projectId": "1683801822084960259", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "30/45", + "halfyearExecution": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "9001020501", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240975", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 4, + "id": "1686929771025805314", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 21, + "id": "1686998505539145732", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240840", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 30, + "id": "1686922845231656963", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240786", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1686917812297543682", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240029", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 1, + "id": "1686279107442593794", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240004", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1686269568852905985", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 24, + "id": "1687355100299173889", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 18, + "id": "1687033788217331714", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240337", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 18, + "id": "1686634804990644227", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240175", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1686569903190380548", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240120", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 24, + "id": "1686298534456283137", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 18, + "id": "1686944704627093505", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240763", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 26, + "id": "1686915329286352898", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1687395853054476291", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240923", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686927382222876673", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-06 17:43:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240422", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 3, + "id": "1686641067745021954", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240196", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686571292381614081", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "放射科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858631039328258", + "creatorName": "雷建波", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240314", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 21, + "id": "1686632383170154499", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242153027276801", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 14:10:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "超声影像科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813521706643457", + "creatorName": "李松", + "modifierId": "1684813521706643457", + "budgetNumber": "00120240144", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 24, + "id": "1686306809469947907", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242212796108801", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "李松", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 09:40:31" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学检验科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813512894410754", + "creatorName": "陈洋", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240101", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 10, + "id": "1686295224609361923", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242277451304962", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "病理科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857005452926978", + "creatorName": "伍静", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240238", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686577050032738307", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242331994034177", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "药剂科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858728070356994", + "creatorName": "周丹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240357", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1686636266349072385", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242384926150658", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "门诊部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859948461826049", + "creatorName": "王英", + "modifierId": "1684859948461826049", + "budgetNumber": "00120240274", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686624299550969858", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242539486253057", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "王英", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 17:48:18" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消毒供应中心", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858292684824577", + "creatorName": "巫明琴", + "modifierId": "1684858292684824577", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1687289907988832260", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242611435343873", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "巫明琴", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 11:29:20" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "公卫科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859071730655233", + "creatorName": "陈丽", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240296", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686629790716989442", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242669643894786", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "院办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859566918574081", + "creatorName": "张晓敏", + "modifierId": "1684859566918574081", + "budgetNumber": "00120240375", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686638466584481795", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678242837269254146", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "张晓敏", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:33:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "党委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857266816786434", + "creatorName": "杨洪洁", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687290324856512515", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243035999571970", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "纪委办", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857287041720321", + "creatorName": "刘彦伽", + "modifierId": "1684857287041720321", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687379292935675905", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243266128449537", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘彦伽", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:25:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "人力资源部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813458724974593", + "creatorName": "代静", + "modifierId": "1684813458724974593", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687373440929488899", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243351767748609", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "代静", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:02:51" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医政医管部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813476785647617", + "creatorName": "郑娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240604", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686652450779893763", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243520831754242", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医院感染预防与控制管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857098138656769", + "creatorName": "凌文蓉", + "modifierId": "1684857098138656769", + "budgetNumber": "00120240488", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686645084344750084", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243652004417538", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "凌文蓉", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:09:59" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "护理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684857368411217922", + "creatorName": "罗琦", + "modifierId": "1684857368411217922", + "budgetNumber": "00120240810", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686920436543533057", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243726268764162", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "罗琦", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:13:50" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "科教部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813449669472258", + "creatorName": "潘孝品", + "modifierId": "1684813449669472258", + "budgetNumber": "00120240623", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686666333565423619", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243791569883137", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "潘孝品", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 18:37:15" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "信息统计部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813530619539458", + "creatorName": "廖成祥", + "modifierId": "1684813530619539458", + "budgetNumber": "00120240256", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 6, + "id": "1686622750359621636", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243885039947777", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "廖成祥", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:37:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "财务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813504069595137", + "creatorName": "刘雨纯", + "modifierId": "1684813504069595137", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687376593527758850", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678243958192803842", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘雨纯", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:15:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "运营绩效部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859558974562306", + "creatorName": "杨路", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686996913318432771", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244065407602689", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医保物价部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813485769846785", + "creatorName": "吴晓巍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240557", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686649596753154050", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244179710775298", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "医学装备部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813495001509890", + "creatorName": "刘光建", + "modifierId": "1684813495001509890", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687350634690813953", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244262934155266", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "刘光建", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 17:08:13" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "总务部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859518931542018", + "creatorName": "彭浩", + "modifierId": "1684859518931542018", + "budgetNumber": "00120240216", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686572455361449985", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244332094033921", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "彭浩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 16:58:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "安全保卫部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859376002244609", + "creatorName": "梁伟", + "modifierId": "1684859376002244609", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1688448895510114306", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244449580683266", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "梁伟", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 15:16:09" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "宣传科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859607821426691", + "creatorName": "何倩", + "modifierId": "1684859607821426691", + "budgetNumber": "00120240001", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1687396523417501697", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244587057385474", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 2, + "modifierName": "何倩", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 17:35:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "审计科", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684858948975960067", + "creatorName": "陈金华", + "modifierId": "1684858948975960067", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1688367911116640258", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244733279211522", + "parentId": "1686269568789991428", + "isDeptUpdate": 0, + "isDiff": 0, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "陈金华", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-07 09:54:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "资产采购及管理部", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684859179436187650", + "creatorName": "黄韵竹", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240442", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 0, + "id": "1686643266382401540", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678244789449330689", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "科教部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240054", + "explanation": "其他工资福利支出业务:外出培训人员工资", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "9001020501", + "deptOneUp": 12, + "id": "1686282705278816258", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568789991428", + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "外出进修、培训、学习", + "isSum": 2, + "projectId": "1683801822219177986", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 356, + "id": "1686269568789991428", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "月", + "relevantDeptId": "1678243791569883137", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "外出进修、培训、学习", + "isSum": 1, + "projectId": "1683801822219177986", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "14/23", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "90010101", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240972", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 7200, + "id": "1686929770958696449", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 8000, + "id": "1686998505476231170", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240837", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 20000, + "id": "1686922845164548097", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240783", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 7200, + "id": "1686917812230434817", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240026", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 6000, + "id": "1686279107375484929", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 8000, + "id": "1686269568722882561", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 650, + "id": "1687355100236259330", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 23000, + "id": "1687033788087308290", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240334", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 60000, + "id": "1686634804923535362", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240172", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 24000, + "id": "1686569903127465985", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240117", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 10000, + "id": "1686298534384979969", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010101", + "deptOneUp": 48000, + "id": "1686944704497070082", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240760", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010101", + "deptOneUp": 280, + "id": "1686915329156329473", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 16800, + "id": "1687395852991561730", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240920", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 21000, + "id": "1686927382151573506", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-06 17:43:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240419", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010101", + "deptOneUp": 3500, + "id": "1686641067677913090", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240193", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010101", + "deptOneUp": 40000, + "id": "1686571292251590657", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269568659968001", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240051", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010101", + "deptOneUp": 0, + "id": "1686282705211707393", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269568659968001", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "门急诊、服务人次", + "isSum": 2, + "projectId": "1683801821103493121", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 303630, + "id": "1686269568659968001", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "门急诊、服务人次", + "isSum": 1, + "projectId": "1683801821103493121", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "14/23", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "90010102", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240986", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 2160, + "id": "1686929771222937604", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 2160, + "id": "1686998505803386883", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240850", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 2500, + "id": "1686922845428789252", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240796", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 1680, + "id": "1686917812507258882", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240039", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 1300, + "id": "1686279107572617221", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240014", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 2000, + "id": "1686269569071009793", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 1000, + "id": "1687355100496306178", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 900, + "id": "1687033788477378563", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240347", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 3000, + "id": "1686634805187776516", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240185", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 1300, + "id": "1686569903463010305", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240130", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 1800, + "id": "1686298534586306565", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010102", + "deptOneUp": 0, + "id": "1686944704849391620", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240773", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010102", + "deptOneUp": 280, + "id": "1686915329445736452", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 0, + "id": "1687395853318717442", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240933", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 60, + "id": "1686927382373871618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240432", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010102", + "deptOneUp": 430, + "id": "1686641068005068802", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240206", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010102", + "deptOneUp": 0, + "id": "1686571292578746369", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569003900937", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240064", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010102", + "deptOneUp": 0, + "id": "1686282705408839683", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569003900937", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "出院人次", + "isSum": 2, + "projectId": "1683801821166407681", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 20570, + "id": "1686269569003900937", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "出院人次", + "isSum": 1, + "projectId": "1683801821166407681", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684856180248780802", + "submitSchedule": "14/19", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "90010103", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240984", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 500, + "id": "1686929771222937602", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686998505736278019", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "心血管内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856079228968961", + "creatorName": "何斌", + "modifierId": "1684856079228968961", + "budgetNumber": "00120240848", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686922845428789250", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229695667572737", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "何斌", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 15:13:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "内分泌科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813414428930050", + "creatorName": "骆晶", + "modifierId": "1684813414428930050", + "budgetNumber": "00120240794", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686917812427567108", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229758959620097", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "骆晶", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 17:09:48" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "骨科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813440890793987", + "creatorName": "高月琴", + "modifierId": "1684813440890793987", + "budgetNumber": "00120240037", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 660, + "id": "1686279107572617219", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229894821515265", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "高月琴", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 15:12:10" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "普通外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813432086949890", + "creatorName": "王曾建", + "modifierId": "1684813432086949890", + "budgetNumber": "00120240012", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 1000, + "id": "1686269569003900934", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678229964639899650", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "王曾建", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 15:22:38" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "泌尿外科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857808276267010", + "creatorName": "漆国红", + "modifierId": "1684857808276267010", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 900, + "id": "1687355100433391620", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230064950874113", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "漆国红", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:44:49" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 700, + "id": "1687033788477378561", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 09:22:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "儿科、新生儿科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856180248780802", + "creatorName": "许云丽", + "modifierId": "1684856180248780802", + "budgetNumber": "00120240345", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686634805187776514", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237663855316994", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "许云丽", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "妇科、产科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856229401829378", + "creatorName": "罗曦", + "modifierId": "1684856229401829378", + "budgetNumber": "00120240183", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 800, + "id": "1686569903421067266", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237721778655233", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "罗曦", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 21:15:27" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "康复医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856599737901057", + "creatorName": "祝亚红", + "modifierId": "1684856599737901057", + "budgetNumber": "00120240128", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686298534586306563", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237775226671106", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "祝亚红", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 16:34:21" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "急诊医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856792755576833", + "creatorName": "罗芷妍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686944704849391618", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237829027008514", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "重症医学科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857280238559234", + "creatorName": "苏娜", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240771", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686915329445736450", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237901013848065", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:32:58" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "口腔科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856606104854529", + "creatorName": "梁得清", + "modifierId": "1684856606104854529", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1687395853251608578", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678237968609251329", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "梁得清", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-05 11:11:34" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "皮肤性病科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813423232774146", + "creatorName": "张世园", + "modifierId": "1684813423232774146", + "budgetNumber": "00120240931", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 120, + "id": "1686927382310957060", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238021516201985", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "张世园", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-06 17:43:11" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "肛肠科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684857219261767681", + "creatorName": "刘萍", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240430", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010103", + "deptOneUp": 380, + "id": "1686641067942154242", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238093855363074", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:32:57" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "体检中心", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856247848378370", + "creatorName": "符红军", + "modifierId": "1684856247848378370", + "budgetNumber": "00120240204", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010103", + "deptOneUp": 0, + "id": "1686571292511637507", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678238203171508226", + "parentId": "1686269569003900933", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "符红军", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-07 11:06:02" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "麻醉手术室", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684813467780476929", + "creatorName": "陈小红", + "modifierId": "1673256702721908737", + "budgetNumber": "00120240062", + "orgId": "1673260632575041538", + "budgetProgress": 1, + "projectCode": "90010103", + "deptOneUp": 5000, + "id": "1686282705408839681", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1683360162632916993", + "parentId": "1686269569003900933", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 1, + "modifierName": "系统管理员", + "projectName": "手术人次", + "isSum": 2, + "projectId": "1683801821166407682", + "ts": "2023-08-04 15:32:57" + } + ], + "deptOneUp": 10060, + "id": "1686269569003900933", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 3, + "modifierName": "许云丽", + "projectName": "手术人次", + "isSum": 1, + "projectId": "1683801821166407682", + "reldeptOneUp": 0, + "ts": "2023-08-07 15:24:19" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684856315842240513", + "submitSchedule": "1", + "halfyearExecution": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "lastyearExecution": 0, + "projectCode": "90010104", + "children": [ + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "消化内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684859794405040130", + "creatorName": "李翔宇", + "modifierId": "1684859794405040130", + "budgetNumber": "00120240980", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010104", + "deptOneUp": 6000, + "id": "1686929771088719878", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227786252619777", + "parentId": "1686929771088719877", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "李翔宇", + "projectName": "操作人次", + "isSum": 2, + "projectId": "1683801821233516545", + "ts": "2023-08-04 17:07:52" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "呼吸内科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684858220278554627", + "creatorName": "代连凤", + "modifierId": "1684858220278554627", + "budgetNumber": "00120240001", + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010104", + "deptOneUp": 1080, + "id": "1686998505673363459", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678227875696152577", + "parentId": "1686929771088719877", + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "代连凤", + "projectName": "操作人次", + "isSum": 2, + "projectId": "1683801821233516545", + "ts": "2023-08-04 15:58:33" + }, + { + "budgetType": 1, + "committeeSubmit": 1, + "deptName": "眼科、耳鼻咽喉科", + "relevantDeptName": "运营绩效部", + "year": "2024", + "creatorId": "1684856315842240513", + "creatorName": "唐吉旭", + "modifierId": "1684856315842240513", + "budgetNumber": "00120240001", + "isComDeptUpdate": 0, + "orgId": "1673260632575041538", + "budgetProgress": 2, + "projectCode": "90010104", + "deptOneUp": 8000, + "id": "1687033788347355138", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "deptId": "1678230124589682690", + "parentId": "1686929771088719877", + "isDeptUpdate": 0, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "isReDeptUpdate": 0, + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "操作人次", + "isSum": 2, + "projectId": "1683801821233516545", + "ts": "2023-08-07 09:22:57" + } + ], + "deptOneUp": 15080, + "id": "1686929771088719877", + "issued": 2, + "totalWay": 1, + "orgName": "新都区第二人民医院", + "reldeptSubmit": 1, + "unit": "人次", + "relevantDeptId": "1678244065407602689", + "deptSubmit": 2, + "modifierName": "唐吉旭", + "projectName": "操作人次", + "isSum": 1, + "projectId": "1683801821233516545", + "reldeptOneUp": 0, + "ts": "2023-08-07 09:22:57" + } +] diff --git a/src/views/ElementSort/index.vue b/src/views/ElementSort/index.vue new file mode 100644 index 0000000..b2ed761 --- /dev/null +++ b/src/views/ElementSort/index.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/src/views/vxeTable/index.vue b/src/views/vxeTable/index.vue new file mode 100644 index 0000000..8abee32 --- /dev/null +++ b/src/views/vxeTable/index.vue @@ -0,0 +1,140 @@ + + + diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 0000000..957ba88 --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,10 @@ + + +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [], +} diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..3e5b621 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,12 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], + "exclude": ["src/**/__tests__/*"], + "compilerOptions": { + "composite": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..100cf6a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,14 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.vitest.json" + } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..dee96be --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,16 @@ +{ + "extends": "@tsconfig/node18/tsconfig.json", + "include": [ + "vite.config.*", + "vitest.config.*", + "cypress.config.*", + "nightwatch.conf.*", + "playwright.config.*" + ], + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node"] + } +} diff --git a/tsconfig.vitest.json b/tsconfig.vitest.json new file mode 100644 index 0000000..d080d61 --- /dev/null +++ b/tsconfig.vitest.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.app.json", + "exclude": [], + "compilerOptions": { + "composite": true, + "lib": [], + "types": ["node", "jsdom"] + } +} diff --git a/unocss.config.ts b/unocss.config.ts new file mode 100644 index 0000000..5c31b3f --- /dev/null +++ b/unocss.config.ts @@ -0,0 +1,15 @@ +// uno.config.ts +import { defineConfig, presetAttributify, presetUno } from 'unocss' +import presetRemToPx from '@unocss/preset-rem-to-px' + +export default defineConfig({ + presets: [ + presetAttributify({ /* preset options */}), + presetUno(), + presetRemToPx(), + ], + rules: [ + [/^vh-(\d+)$/, ([, d]) => ({ height: `${d}vh` })], + [/^vw-(\d+)$/, ([, d]) => ({ width: `${d}vw` })], + ], +}) diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..4bbb0c7 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,18 @@ +import { URL, fileURLToPath } from 'node:url' +import UnoCSS from 'unocss/vite' + +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue(), + UnoCSS(), + ], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)), + }, + }, +}) diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..42638b2 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,18 @@ +import { fileURLToPath } from 'node:url' +import { mergeConfig, defineConfig } from 'vite' +import { configDefaults } from 'vitest/config' +import viteConfig from './vite.config' + +export default mergeConfig( + viteConfig, + defineConfig({ + test: { + environment: 'jsdom', + exclude: [...configDefaults.exclude, 'e2e/*'], + root: fileURLToPath(new URL('./', import.meta.url)), + transformMode: { + web: [/\.[jt]sx$/] + } + } + }) +)