From 19788c134add3352001ba2f39a49f1f3ba016512 Mon Sep 17 00:00:00 2001 From: hddcc <531210118@qq.com> Date: Sun, 9 Aug 2026 23:28:37 +0800 Subject: [PATCH] feat: add automated recruitment listings --- .github/workflows/qq-jobs-sync.yml | 177 + assets/_custom.scss | 78 + content/docs/jobs/_index.md | 2 + ...17\346\227\245\346\233\264\346\226\260.md" | 8316 ++ ...33\346\217\220\345\211\215\346\211\271.md" | 1386 + data/jobs/daily-updates.json | 69782 ++++++++++++++++ data/jobs/early-recruitment.json | 10968 +++ .../implementation.md" | 277 + .../solution.md" | 74 + scripts/sync_qq_jobs.py | 1243 + tests/test_sync_qq_jobs.py | 935 + 11 files changed, 93238 insertions(+) create mode 100644 .github/workflows/qq-jobs-sync.yml create mode 100644 "content/docs/jobs/\346\257\217\346\227\245\346\233\264\346\226\260.md" create mode 100644 "content/docs/jobs/\347\247\213\346\213\233\346\217\220\345\211\215\346\211\271.md" create mode 100644 data/jobs/daily-updates.json create mode 100644 data/jobs/early-recruitment.json create mode 100644 "docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/implementation.md" create mode 100644 "docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/solution.md" create mode 100644 scripts/sync_qq_jobs.py create mode 100644 tests/test_sync_qq_jobs.py diff --git a/.github/workflows/qq-jobs-sync.yml b/.github/workflows/qq-jobs-sync.yml new file mode 100644 index 0000000..ab287ab --- /dev/null +++ b/.github/workflows/qq-jobs-sync.yml @@ -0,0 +1,177 @@ +name: 同步招聘信息 + +on: + schedule: + - cron: "0 */3 * * *" + workflow_dispatch: + inputs: + probe_only: + description: 只验证腾讯文档完整性,不修改内容 + required: false + default: false + type: boolean + accept_source_deletions: + description: 确认将本次缺失记录标记为源表已移除 + required: false + default: false + type: boolean + +permissions: + actions: write + contents: write + issues: write + +concurrency: + group: ${{ github.repository }}-qq-jobs-sync + cancel-in-progress: false + +env: + DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} + HUGO_VERSION: 0.159.0 + PLAYWRIGHT_VERSION: 1.55.0 + PYTHONDONTWRITEBYTECODE: "1" + +jobs: + sync: + name: 校验、同步并发布 + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - name: 检出最新默认分支 + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.event.repository.default_branch }} + submodules: false + + - name: 安装 Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + + - name: 还原专用账号会话 + shell: bash + env: + QQ_STORAGE_STATE_B64: ${{ secrets.QQ_DOCS_STORAGE_STATE_B64 }} + run: | + if [[ -z "$QQ_STORAGE_STATE_B64" ]]; then + echo "缺少 QQ_DOCS_STORAGE_STATE_B64。" >&2 + exit 1 + fi + STORAGE_STATE="$RUNNER_TEMP/qq-docs-storage-state.json" + printf '%s' "$QQ_STORAGE_STATE_B64" | base64 --decode > "$STORAGE_STATE" + chmod 600 "$STORAGE_STATE" + STORAGE_STATE="$STORAGE_STATE" \ + python3 -c 'import json, os; json.load(open(os.environ["STORAGE_STATE"], encoding="utf-8"))' + echo "STORAGE_STATE=$STORAGE_STATE" >> "$GITHUB_ENV" + + - name: 安装 Playwright Chromium + run: | + python3 -m pip install --disable-pip-version-check "playwright==$PLAYWRIGHT_VERSION" + python3 -m playwright install --with-deps chromium + + - name: 运行同步测试 + run: python3 -m unittest tests.test_sync_qq_jobs + + - name: 双遍读取并校验腾讯文档 + shell: bash + run: | + args=( + --storage-state "$STORAGE_STATE" + --timeout-seconds 120 + ) + if [[ "${{ inputs.probe_only || false }}" == "true" ]]; then + args+=(--probe-only) + else + args+=(--check-links) + fi + if [[ "${{ github.event_name }}" == "workflow_dispatch" && "${{ inputs.accept_source_deletions || false }}" == "true" ]]; then + args+=(--accept-source-deletions) + fi + python3 scripts/sync_qq_jobs.py "${args[@]}" + + - name: 检查生成文件范围 + id: changes + if: ${{ !(github.event_name == 'workflow_dispatch' && inputs.probe_only) }} + shell: bash + run: | + allowed='^(data/jobs/(daily-updates|early-recruitment)\.json|content/docs/jobs/(每日更新|秋招提前批)\.md)$' + changed_files="$(git -c core.quotepath=false diff --name-only)" + unexpected="$(printf '%s\n' "$changed_files" | sed '/^$/d' | grep -Ev "$allowed" || true)" + if [[ -n "$unexpected" ]]; then + echo "同步产生了白名单外改动:" >&2 + echo "$unexpected" >&2 + exit 1 + fi + if [[ -z "$changed_files" ]]; then + echo "updated=false" >> "$GITHUB_OUTPUT" + else + echo "updated=true" >> "$GITHUB_OUTPUT" + git diff --check -- \ + data/jobs/daily-updates.json \ + data/jobs/early-recruitment.json \ + content/docs/jobs/每日更新.md \ + content/docs/jobs/秋招提前批.md + fi + + - name: 初始化主题子模块 + if: steps.changes.outputs.updated == 'true' + run: git submodule update --init --recursive + + - name: 安装 Hugo + if: steps.changes.outputs.updated == 'true' + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: ${{ env.HUGO_VERSION }} + extended: true + + - name: 构建整站 + if: steps.changes.outputs.updated == 'true' + run: hugo --minify + + - name: 校验搜索索引收录 + if: steps.changes.outputs.updated == 'true' + run: python3 scripts/check_search_index.py --site public + + - name: 提交并推送招聘信息 + if: steps.changes.outputs.updated == 'true' + shell: bash + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add -- \ + data/jobs/daily-updates.json \ + data/jobs/early-recruitment.json \ + content/docs/jobs/每日更新.md \ + content/docs/jobs/秋招提前批.md + git commit -m "更新招聘信息" + git push origin "HEAD:$DEFAULT_BRANCH" + + - name: 触发现有 Pages 发布工作流 + if: steps.changes.outputs.updated == 'true' + env: + GH_TOKEN: ${{ github.token }} + run: gh workflow run static.yml --ref "$DEFAULT_BRANCH" + + report_failure: + name: 报告同步失败 + needs: sync + if: ${{ always() && needs.sync.result == 'failure' }} + runs-on: ubuntu-latest + steps: + - name: 创建或更新故障 Issue + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.repository }} + RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + shell: bash + run: | + title='招聘信息同步失败' + printf -v body '招聘信息同步未通过完整性门槛,现有站点内容保持不变。\n\n运行:%s\n触发方式:%s\n提交:%s' \ + "$RUN_URL" "${{ github.event_name }}" "${{ github.sha }}" + issue_number="$(gh issue list --state open --search "$title in:title" --json number,title --jq '.[] | select(.title == "招聘信息同步失败") | .number' | head -n 1)" + if [[ -n "$issue_number" ]]; then + gh issue edit "$issue_number" --body "$body" + else + gh issue create --title "$title" --body "$body" + fi diff --git a/assets/_custom.scss b/assets/_custom.scss index e88a550..4f1e3a8 100644 --- a/assets/_custom.scss +++ b/assets/_custom.scss @@ -1969,6 +1969,84 @@ body.sidebar-collapsed .book-brand-mark { background: rgba(255, 255, 255, 0.78); } +.markdown .job-table-scroll { + max-width: 100%; + overflow-x: auto; + overflow-y: hidden; + padding-bottom: 0.25rem; + scrollbar-gutter: stable; + overscroll-behavior-inline: contain; +} + +.markdown table.job-table { + width: max-content; + min-width: 100%; + max-width: none; + margin: 0; + table-layout: auto; +} + +.markdown table.job-table th, +.markdown table.job-table td { + min-width: 9rem; + vertical-align: top; + white-space: nowrap; +} + +.markdown table.job-table th:first-child, +.markdown table.job-table td:first-child { + min-width: 18rem; +} + +.markdown table.job-table td a { + display: inline-block; + max-width: 28rem; + overflow-wrap: anywhere; + white-space: normal; +} + +.markdown .job-pagination { + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + margin-top: 1rem; +} + +.markdown .job-pagination button { + display: inline-flex; + width: 2.25rem; + height: 2.25rem; + align-items: center; + justify-content: center; + padding: 0; + border: 1px solid var(--goclub-border); + border-radius: 0.35rem; + background: rgba(var(--goclub-surface-rgb), 0.9); + color: var(--body-font-color); + cursor: pointer; + font: inherit; + font-size: 1.25rem; + line-height: 1; +} + +.markdown .job-pagination button:hover, +.markdown .job-pagination button:focus-visible { + border-color: var(--goclub-primary); + color: var(--goclub-primary); +} + +.markdown .job-pagination button:disabled { + cursor: default; + opacity: 0.42; +} + +.markdown .job-pagination-status { + min-width: 6.5rem; + text-align: center; + font-variant-numeric: tabular-nums; +} + .markdown table tr th { background: rgba(0, 75, 73, 0.07); color: var(--body-font-color); diff --git a/content/docs/jobs/_index.md b/content/docs/jobs/_index.md index 933626f..4df4c6e 100644 --- a/content/docs/jobs/_index.md +++ b/content/docs/jobs/_index.md @@ -14,3 +14,5 @@ shortlink: "93fk" ## 子栏目 - [内推]({{< relref "referral/_index.md" >}}):社区成员提供的各公司内推码与投递入口。 +- [每日更新]({{< relref "每日更新.md" >}}):按更新时间汇总最新招聘公告与投递入口。 +- [秋招提前批]({{< relref "秋招提前批.md" >}}):汇总秋招提前批企业与投递入口。 diff --git "a/content/docs/jobs/\346\257\217\346\227\245\346\233\264\346\226\260.md" "b/content/docs/jobs/\346\257\217\346\227\245\346\233\264\346\226\260.md" new file mode 100644 index 0000000..9ab4287 --- /dev/null +++ "b/content/docs/jobs/\346\257\217\346\227\245\346\233\264\346\226\260.md" @@ -0,0 +1,8316 @@ +--- +title: "每日更新" +slug: "daily-updates" +weight: 1 +aliases: + - "/s/553e/" +shortlink: "553e" +type: docs +--- + +# 每日更新 + +最后成功同步:2026-08-09T14:43:43Z + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
公告标题更新日期截止日期所在行业招聘类型工作地点公告链接投递官网链接
上海朗跃2027届校园招聘正式启动2026-08-08未明确尽快投国际贸易27届秋招上海点击查看公告中扫码投递
智汇东方 才聚未来 | 中国东方2027年度校园招聘正式启动2026-08-089月18日国企/央企/事单27届秋招全国各地点击查看https://coamc.zhiye.com/campus
“芯曜生”集结 | 卓胜微2027届秋季校园招聘正式启动!2026-08-08未明确尽快投电子/半导体27届秋招无锡/成都点击查看https://maxscend.zhiye.com/campus/jobs
用友2027届校招高潜人才计划正式启动2026-08-0810月31日互联网27届提前批北京点击查看https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html
【掌趣科技】2027届秋季校园招聘正式启动!2026-08-08未明确尽快投互联网27届秋招北京点击查看https://app.mokahr.com/campus-recruitment/ourpalm/43628?locale=zh-CN#/
青春有光,未来证亮|光大证券2027校园招聘正式启动!2026-08-089月6日金融27届秋招北京/上海/深圳/广州等点击查看https://ebscn.zhiye.com/campus
思格新能源2027校招开启2026-08-0811月30日能源/电气27届秋招上海/南通/佛山/珠海点击查看https://jobs.sigenergy.com/campus/position/list
申洲集团2027届秋季校园招聘正式启动2026-08-08未明确尽快投服装/快消27届秋招宁波点击查看https://career.shenzhouintl.com/campus/jobs?sessionid=
同芯筑梦 共创未来 | 国科微电子2027届校园招聘硬核启航!2026-08-08未明确尽快投电子/半导体27届秋招长沙/成都/深圳/杭州/上海/济南/青岛点击查看https://goke1.zhiye.com/campus/jobs
秋招提前批 | 10城 · 300+offer抢先投递2026-08-08未明确尽快投教育27届提前批全国各地点击查看https://xintianhuakai1.zhiye.com/campus/jobs?memory=%7B%7D&amp;silence=1
天算招聘|中科天算2027校园招聘暨社会招聘正式启动!2026-08-08未明确尽快投国企/央企/事单27届秋招上海/南京/北京/杭州点击查看公告中邮箱投递
中国软件评测中心2027届校园招聘正式启动啦!2026-08-08未明确尽快投国企/央企/事单27届秋招北京点击查看公告中扫码投递
帝奥微(688381)2027届校园招聘正式启动!2026-08-07未明确尽快投电子/半导体27届秋招南通/上海/深圳/武汉/苏州等点击查看https://dioo.zhiye.com/campus/jobs
微纳核芯 2027 校园招聘|「核芯计划」正式启动,寻找存算一体核芯力量2026-08-0710月31日电子/半导体27届秋招杭州/上海/北京/深圳/苏州点击查看https://dwz.cn/Uvbj4vnW
汇顶科技2027届校园招聘正式启动!2026-08-07未明确尽快投电子/半导体27届秋招深圳/上海/成都/武汉点击查看https://goodix.zhiye.com/Campus
+
+ +
+ diff --git "a/content/docs/jobs/\347\247\213\346\213\233\346\217\220\345\211\215\346\211\271.md" "b/content/docs/jobs/\347\247\213\346\213\233\346\217\220\345\211\215\346\211\271.md" new file mode 100644 index 0000000..06b73df --- /dev/null +++ "b/content/docs/jobs/\347\247\213\346\213\233\346\217\220\345\211\215\346\211\271.md" @@ -0,0 +1,1386 @@ +--- +title: "秋招提前批" +slug: "early-recruitment" +weight: 2 +aliases: + - "/s/9qrj/" +shortlink: "9qrj" +type: docs +--- + +# 秋招提前批 + +最后成功同步:2026-08-09T14:43:43Z + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
公司名称所在行业招聘类型招聘岗位工作地点投递链接备注笔试时间表截止投递日期
字节-秋招互联网互联网类秋招/提前批研发、产品、运营、设计、职能/支持、销售、市场、游戏策划北京、上海、深圳、广州、成都、杭州等多地可选点击内推两个志愿机会招完即止
哔哩哔哩-秋招互联网互联网类秋招/提前批★技术类(算法、开发、测试……)
★产品运营类(产品经理、用户运营、数据分析……)
★市场营销类(品牌推广、商务拓展……)
★内容类(编剧、剪辑、内容策划……)
★设计类(UI、UX、视觉设计……)
★职能类(HR、财务、法务……)
上海、北京、深圳、海外点击内推招完即止
京东-秋招互联网互联网类秋招/提前批算法、软开、产品、运营、市场、职能、设计、金融北京、上海、深圳、成都、香港、广州等诸多城市点击内推🚀 极简应聘流程
1⃣ 随时网申(重点蹲7-9月!)
2⃣ 简历过筛→24h内发测评
3⃣ 无笔试!(特殊岗位除外)
三轮面试通过后等Offer!
招完即止
Shopee研发中心-秋招互联网互联网类秋招/提前批研发岗、算法岗、产品岗、职能岗北京、上海、深圳点击内推网申/内推 ➔ 笔试 ➔ 2~3轮专业面试 ➔ HR沟通 ➔ Offer招完即止
美团-北斗计划互联网互联网类秋招/提前批大模型算法、智能体系统、搜索/推荐算法、自动驾驶、无人机等北京、上海、深圳、成都、香港、广州等诸多城市点击内推招完即止
快手-快Star提前批互联网互联网类秋招/提前批大模型、音视频、AI infra、AI工程与应用、推荐等9大核心研究方向北京、上海、杭州、深圳点击内推双重保险:没选上快Star,也有机会直接拿快手校招正式Offer招完即止
拼多多-提前批互联网互联网类秋招/提前批技术类,运营类,职能类,产品类上海点击内推招完即止
百度-秋招互联网互联网类秋招/提前批涵盖5大方向,共74个细分职位:
1. 算法类:大模型算法、多模态算法、智能体、自动驾驶算法、AI异构计算等。
2. 产品类:AI大模型产品经理、产品运营等。
3. 政企类:政策研究、政府事务、战略合作与业务发展等。
4. 销售类:政企行业解决方案和服务等。
5. 综合类:人力资源、财务、法务、战略分析、品牌市场等
北京、上海、深圳、杭州、成都、郑州、广州、大连、苏州、厦门、重庆、香港、新加坡等全国及海外多城点击内推本项目为秋招正式批,每周四笔试招完即止
网易互娱游戏-秋招游戏互联网类秋招/提前批策划 / 技术 / 美术 / 测试 / 用户体验 / 市场 / 运营 / PM 等多类岗位广州、杭州、上海点击内推!!今年扩招,可以尝试,与网易雷火互相独立,互不影响招完即止
网易雷火-秋招游戏互联网类秋招/提前批技术研发类:客户端/服务端开发、引擎/图形渲染、AI算法、测试开发、数据、安全、工具开发杭州、上海、广州点击内推网易游戏/网易雷火/网易互联网互不冲突招完即止
米哈游-秋招游戏互联网类秋招/提前批1. 程序&技术💻:引擎、客户端、服务端、大模型AI算法、高性能计算、测试开发、平台运维
2. 美术&表现🎨:原画、3D建模、动画、特效、UI交互、技术美术
3. 产品策划📝:系统、战斗、数值、关卡、技术策划
4. 运营📊:用户运营、社区运营、活动运营、数据分析运营
5. 市场商务🤝:品牌、媒介、商业化、IP商务合作
6. 国际化🌍:海外本地化、全球市场运营
7. 质量管理✅:游戏测试、本地化测试、质量管控
8. 综合职能📋:项目管理、人力、财务等职能岗位
上海、北京点击内推招完即止
以下为阿里系秋招汇总互联网类秋招/提前批
蚂蚁集团(暑期实习笔试共用)互联网互联网类秋招/提前批技术、产品、运营、数据、风险管理等杭州、上海、北京、成都、深圳等点击内推招完即止
淘宝闪购互联网互联网类秋招/提前批AI应用研发工程师、AI应用算法工程师、AI体验设计师、AI数据工程师、大模型数据研发工程师、移动端逆向工程师、安全技术工程师、数据科学家、AI Agent产品经理、产品经理北京、杭州、上海点击内推仅可内推淘宝闪购岗位。和淘天互相独立,流程不冲突招完即止
舜宇光学智能制造27届秋招结构设计、光学设计、电子设计、软件开发、图像算法处理、工艺技术、销售、市场开发、质量管理、人力资源、财经等宁波、中山、杭州、上海等点击内推舜宇集团是全球领先的综合光学产品制造商招完即止
+
+ +
+ diff --git a/data/jobs/daily-updates.json b/data/jobs/daily-updates.json new file mode 100644 index 0000000..e42eef7 --- /dev/null +++ b/data/jobs/daily-updates.json @@ -0,0 +1,69782 @@ +{ + "records": [ + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "浙商银行2027届暑期实习" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779465600000", + "value": "2026-05-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月7日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e2b38c5c035720a608e134d0390a57dbd426d1b9a0c0afeb491136dcc11ae25", + "text": "点击查看", + "url": "https://zp.czbank.com.cn/zpweb/planController/gotoIndex.mvc?pageType=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8a8c0cea9b92549cc4ae1ebd4c67f3080a9ad07d1067ca72442f3075d071ff52", + "text": "https://zp.czbank.com.cn/zpweb/planController/gotoIndex.mvc?pageType=1", + "url": "https://zp.czbank.com.cn/zpweb/planController/gotoIndex.mvc?pageType=1" + } + ], + "value": "https://zp.czbank.com.cn/zpweb/planController/gotoIndex.mvc?pageType=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3tsBb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上海朗跃2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oy7vN3" + ], + "value": [ + "国际贸易" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2af89a6abc3de6b90b8c1193015d1b827e59512084edc344bfdf014cb03429f8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SfW_13OfExohu8wfzJeDzA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "43bce877097ce82ac63db8830e165a708dbe8b5343c37b1f864c1b17555f775e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rll2Y9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智汇东方 才聚未来 | 中国东方2027年度校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月18日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e6b4eb2c1da225af173146eab28126489c2dea9291fe4223723068d0da0a99cd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sp_O61jQOHjCaxGaKjvOhw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b8cb5e998d7c421155f54ff283273f5f1bf162dbf3fbd9f6ea8913dd5990d2b2", + "text": "https://coamc.zhiye.com/campus", + "url": "https://coamc.zhiye.com/campus" + } + ], + "value": "https://coamc.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3dvbc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“芯曜生”集结 | 卓胜微2027届秋季校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f094a4d256ae63d10a4bb1d32717f3c53c3572428430dec73e2f0524e6032345", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mx7JZxfnhJOy0pL-gZuX6g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "88cf53d1aea06f486f033895b685e5cf1fef22050c98b5a3a44145ba8d3afe1e", + "text": "https://maxscend.zhiye.com/campus/jobs", + "url": "https://maxscend.zhiye.com/campus/jobs" + } + ], + "value": "https://maxscend.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGw9Qg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "用友2027届校招高潜人才计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "be52fafe96b78d04b2fcfbe7ca265a12688177d46f1d104860b4f163f151efff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/maKWPfg7z7Lao-2nxwnOTw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a2242919613f5a74ecc1848cb384a94811396830ba31a7e6fa49c7939a5055d", + "text": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html", + "url": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html" + } + ], + "value": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlxnJj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【掌趣科技】2027届秋季校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6ec8cf37e179d5b3e136b2782fce9b984a2c9a640441a798e61809cc79713750", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/k55IjmprEReFV4PHumwO3g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2b6da6acffa7772e2f153a4f465bdc17f87c7b8618b80c14fb01c57559acaa7f", + "text": "https://app.mokahr.com/campus-recruitment/ourpalm/43628?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/ourpalm/43628?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ourpalm/43628?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPY8LH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "青春有光,未来证亮|光大证券2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月6日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "508d3b7f5470ca08ab40ec8efb06ef617cf816fbc1112f37d91c6f776f16e9a9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KPYtUKFVATtW6frkSqnOjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f1acdaacb9e84a6f2a80159631d7fed7ac6f05e13d4f0ea9b779016320764a06", + "text": "https://ebscn.zhiye.com/campus", + "url": "https://ebscn.zhiye.com/campus" + } + ], + "value": "https://ebscn.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOdxkj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "思格新能源2027校招开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "11月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o04fQQ" + ], + "value": [ + "能源/电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南通/佛山/珠海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2308e179e957a95a4b45a51972e998aafaf350677eb8c9e91ca76a2c7db3727a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Gsab0l31Wj-MD0HvlAF4Iw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "19aa159016ef46f4a708cf2f368b4b7103a305950e380a4543fa5fef2405d5ef", + "text": "https://jobs.sigenergy.com/campus/position/list", + "url": "https://jobs.sigenergy.com/campus/position/list" + } + ], + "value": "https://jobs.sigenergy.com/campus/position/list" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRdZDt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "申洲集团2027届秋季校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5n6qG" + ], + "value": [ + "服装/快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d32f1601bdfb1afb0599570e41c8f59917e6372627a62a785d20c1e3274df627", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pr0N0B3iGbL1roAc7dh9Wg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9d437bbfe56ac7af90e733dcd4dad94be82bd570ff02282747e1624f5df39b24", + "text": "https://career.shenzhouintl.com/campus/jobs?sessionid=", + "url": "https://career.shenzhouintl.com/campus/jobs?sessionid=" + } + ], + "value": "https://career.shenzhouintl.com/campus/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGE1Q0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "同芯筑梦 共创未来 | 国科微电子2027届校园招聘硬核启航!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙/成都/深圳/杭州/上海/济南/青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7c3e419e0c0b2eb6a3b68d4f902c2ea5c286c80040387d52b42830df7d1685e1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PpdT5TK6n9c5e38QN72gZw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0d7f90714943af9832b53dfff85409138951021825262d179ec648590e56f96a", + "text": "https://goke1.zhiye.com/campus/jobs", + "url": "https://goke1.zhiye.com/campus/jobs" + } + ], + "value": "https://goke1.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvvWCb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "秋招提前批 | 10城 · 300+offer抢先投递" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa6Z1q" + ], + "value": [ + "教育" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a6f804618354a9a18fd570c3aed18316acadc80db98ae93514578bc5cbbb1fd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HfexOf-0gYH4XPd5jnspkg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f42cb1089a4ed0690de0c5b90b345a24b5f73cee43fe7a9a4db96bb55b03bd14", + "text": "https://xintianhuakai1.zhiye.com/campus/jobs?memory=%7B%7D&silence=1", + "url": "https://xintianhuakai1.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "https://xintianhuakai1.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rshSGN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "天算招聘|中科天算2027校园招聘暨社会招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/北京/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "999e48b932aa432320e1b234ce988c5bd91e1d20855f29511750bfd402cca9b9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8Ov7a1LEXlofkUBdWRiJwQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "562f1a28e59083d0695133343adbd93c13823724f56b33c399c3d3608e4f3f8b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8nzWW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国软件评测中心2027届校园招聘正式启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786118400000", + "value": "2026-08-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "13614934f03a3015f8e7745fc82027890dbf0dbe5137f0be303fa19f68f37eab", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tw1rtI3hgHNcmIfVEs0wqw?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1d3008329a8d43d28eb55cdf5947ea9d3b18ae7bb29bc84350af5e19c321dbfa", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rukjZN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "帝奥微(688381)2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786032000000", + "value": "2026-08-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南通/上海/深圳/武汉/苏州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2334c020170acfb769310ff85bfac499f555f18b7f43f6b64e464f57d89c9b43", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ACbQb70nfxsiXdxYMmLb9Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4257021d929c1e52e473b950d7ae9bf53f0031e5aa61372d10e527fe9cca6cd4", + "text": "https://dioo.zhiye.com/campus/jobs", + "url": "https://dioo.zhiye.com/campus/jobs" + } + ], + "value": "https://dioo.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rs5dg3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微纳核芯 2027 校园招聘|「核芯计划」正式启动,寻找存算一体核芯力量" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786032000000", + "value": "2026-08-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/北京/深圳/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "92847f00e6ee12725441bea434258794468ea2fc3f451d068471060ad5fa8367", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gRb5rDZRpB7basbd8Gb47A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "timeout", + "result": "unknown", + "status_code": null + }, + "key": "36832c24a1a64a9f1f2b41ebff9f809057b0c9ca0bdd635ba1ab9e444da5ded4", + "text": "https://dwz.cn/Uvbj4vnW", + "url": "https://dwz.cn/Uvbj4vnW" + } + ], + "value": "https://dwz.cn/Uvbj4vnW" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6E9Cb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "汇顶科技2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1786032000000", + "value": "2026-08-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/成都/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f037042dc565a2659f5bed0625992e0042f91d7edad95a78bd5926169735189f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FvMtfoceKms_AybARXQ2qA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26771c49b6b49fa04903842676167deabbe009096629665aa19fd935d10434f7", + "text": "https://goodix.zhiye.com/Campus", + "url": "https://goodix.zhiye.com/Campus" + } + ], + "value": "https://goodix.zhiye.com/Campus" + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2FYo0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "基康技术2027校园招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/武汉/成都/西安/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "397adfe5dab98da8c4a2a7989737f815d66cfe3f3121cd0f02f42232e1d285b7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rusCP_yJ6S1hR7NPBmdxdw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "439578a79d1690c2e82d0fe1606a8d84ea9d548a39a77fd227e035a3935178c3", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxWXWd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "砺算筑芯,骐骥驰骋 | 砺算科技2027校园招聘职位开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/北京/深圳/杭州/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3c21dcf3a5535f8dabb7f4904b0683adf37c5d39998e0bd7da913152aeb6a2b3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oaqAnmkVsdvjVsLtrU5uhQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f066ffe0c7b30c8e7fd2ff23c6aee4e16305f8e01bb584955d93e2dcf11e0d00", + "text": "https://www.lisuantech.com/join/campus-recruitment", + "url": "https://www.lisuantech.com/join/campus-recruitment" + } + ], + "value": "https://www.lisuantech.com/join/campus-recruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZI2gk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "泉峰科技2027届校园招聘全面启航" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/上海/越南" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "595d2e97fc13ae18f459765101336f3997d711e72898c2b5af8a4bb1d47d4377", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/brvPEXLPrDXRxACQjzA4rA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0ec7b9178fa76daa12961487ced5525fc0e0b85cc68ab7fd095212cf6c970af7", + "text": "https://wecruit.hotjob.cn/SU6396cdcc0dcad40b2a419d69/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU6396cdcc0dcad40b2a419d69/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU6396cdcc0dcad40b2a419d69/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOiiAz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "趣这里,创造未来 | 紫龙游戏2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "11月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "06fc108819a0241ce8588d7374e2a6b6bcae19daccea60ee7281e73fcb3a79a6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nyvIgNM-ISfch0vhjT6l0A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bc49b5b37d70b3ff23997fb4eba63e58846638bb876fb0961cc7e41ec30917f9", + "text": "https://app.mokahr.com/campus-recruitment/zlongame/140110?sourceToken=d5c90db4913329c24bde0e9a35e76fa4#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/zlongame/140110?sourceToken=d5c90db4913329c24bde0e9a35e76fa4#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/zlongame/140110?sourceToken=d5c90db4913329c24bde0e9a35e76fa4#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rf1w6F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯恩2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c226f8bf8af981dde15df9d0801b6d82ff857ccf3e1edbcf0ddf87746cef161b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Z6dZa57xUlR6oxPrpiVhuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b8baa17cc3ff0694b80d8d2551aeb74d38713557d2662740d29652d5f9432172", + "text": "https://wecruit.hotjob.cn/SU64ebfd3f1eb80519a8f9db42/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU64ebfd3f1eb80519a8f9db42/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU64ebfd3f1eb80519a8f9db42/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r14JOV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星辉游戏2027届秋季校园招聘正式启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785945600000", + "value": "2026-08-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2aa7bd94e1297c71acbe8a41738408f8848891b245e66b120e66e406ad526cef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Gr9fPjOb3duVHEV-1dIPCg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9eadd45db362c680ec426b3291b2b4b17dd3c75c4784df1cf9d6e8dd889b08d0", + "text": "https://rastargame.jobs.feishu.cn/066491/position/list?keywords=&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&spread=BSHV4B3&storefront_id_list=", + "url": "https://rastargame.jobs.feishu.cn/066491/position/list?keywords=&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&spread=BSHV4B3&storefront_id_list=" + } + ], + "value": "https://rastargame.jobs.feishu.cn/066491/position/list?keywords=&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&spread=BSHV4B3&storefront_id_list=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rI8cna", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "它石智航2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "12月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "606b025d2142f470e640c9779f5a6371000c8b45ad29735ff368688445f41c43", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WJAc5xNJc9uA4VR7pw_XWQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a4c7dcf0b1b403f62a07e5854d97e7e0ca733d0a74e9cfe4c52f7ff03d09e300", + "text": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=", + "url": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "value": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtfHVW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "博通集成电路2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "76aeaf725e323e8af4a8fa5d2c26b23d37978490beaba7889fcc84b07f8fbf2d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gYcnppJAspmFr3ak45iSGQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "84c44e1bf0e9d01c4a2abbbe976a3565ebb7ae1ea216b3c746cec4782cf353d7", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "razpC4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "天岳先进2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9b6c88fce0bef0d6a51e665c715a88d377849782a45c561e16b95cc271b61a08", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LwmYc2oM1hg8bIQOYCkLpQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2e7c1dffeee7dbc675deff5d1d993751516ee19510c94a665c8072c7eb43ae15", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmXdth", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智算芯生 此刻启程 | 上海立芯2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/福州/长沙/成都/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3a258b903ec2bf413253458f6e230fee6d5a2c7eec73cff235a4fef6573eb504", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xvB0RIn5wcrCU4w-nS1CKA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ab034c10915a6234cba8895ee491308517d3155ba3c614bd291522d2d7365b88", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6ApIr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "恪赛科技2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "403347507e3e81bc7ea752de00d4af29887c1d76510d9546089abdd47cf14f78", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VKhZxhYyd5-rJImEpQW0Yg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f9e237009180f06d988dd3fb5d2b6586684f6e1977b895fc37a953c94722277a", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxI3KT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "爱科微2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "11月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "617ec4f37a8a4125372f03e906f9112e3b9f1f68760c17f15864d49993face08", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/56rfzWFDQdwA9iEeZ6yvYg?click_id=1830359862" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b2d990c60023386b79b41931eddf1885e08d51b78928fde6562c8074cbfe823e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBDEmf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "创见不同·智启未来 | 毕马威2027秋季校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4f6433a9f8afd20b8a207e9fcb30475a0b20e0467875cabf54fd2dc43b34d099", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/s2pGhqLQlQywIvyR28BfpA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "06da12675a7d54453c8f72522efcf7b38394071c6002f03824f887322b7ed898", + "text": "https://kpmg.com/cn/zh/careers/campus/graduate-applications.html", + "url": "https://kpmg.com/cn/zh/careers/campus/graduate-applications.html" + } + ], + "value": "https://kpmg.com/cn/zh/careers/campus/graduate-applications.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwFDcl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Join us!——上海精测半导体2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785772800000", + "value": "2026-08-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/武汉/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "00d0ca6421d07996bab9e35a5930f07c3b4699877dcb073ea1d87e6996cfc261", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0MVH3FVEQCFwwp86n7cyxg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "14fa778295d0a7a11febebb6e6f82e0fa3cac963a1781c86dd80d4b3dbf31659", + "text": "https://pmish-tech.zhiye.com/campus/jobs", + "url": "https://pmish-tech.zhiye.com/campus/jobs" + } + ], + "value": "https://pmish-tech.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4JSk7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "瑞银校招 | 2027中国内地校园招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "df6c1585710f1232f4d10c3768365a5e6ecca1ebe5378c0639c9547abddfd07f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/a6I96PXXwet4db8JswOznA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "eb94399568bf21360798bd399f096101e92eef20888d86d0c179968fb3f80bd3", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "racHM9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "MPS芯源系统2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/上海/香港/杭州/深圳/南京/北京/合肥/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f0d60633922aa51777ea9ab2da253fee0adb2540ae69aec219930a407304c98d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_Jo92Vkrvg3p2DQI2JAciA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f44988a8ee4f10858c3194f92629b5f9661d7c680015bdd8881d9994744f3a21", + "text": "https://xz.51job.com/mps/list4.html", + "url": "https://xz.51job.com/mps/list4.html" + } + ], + "value": "https://xz.51job.com/mps/list4.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNbM6l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "德勤2027校园招聘及寒假实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "07392dbc1cdce38cbddaf4fba8c7c870cb800240b4de2314a64a5c9722b8d389", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0JxoQMGkIQfG1WXlENp82g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a9a66209883650a26259a4fd78aec7ed72cf9300698e661ea17451db67bcb7b", + "text": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/campus?projectCode=106501&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/campus?projectCode=106501&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/campus?projectCode=106501&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAea4H", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "「源件星球」2027年校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/洛阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a71baacb263d88767d96da1db32a5c45c9bb42d4c6d60580ca4c1845e042372d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/udIHz45EdWXSJsQ2GC7Kbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d7d9f1507e42395ca6510502545ff968c8f0a78e35e1ef7f2f8d54dcd2f0e1f3", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQ4llK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 中科芯2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/南京/西安/成都/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0977a7f3d78aecebf65e455fb7474ba26fc623593f7a4b5b2afc7b66dfb86bd7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/b-i67TQAecXV6Rd-ntKrSg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "683945d7ac892abd0894c498c0b00f6a61613e52dbbe392b8fadce6f13c7835a", + "text": "https://cksic.zhiye.com/campus/jobs", + "url": "https://cksic.zhiye.com/campus/jobs" + } + ], + "value": "https://cksic.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6OVJp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥纬咨询上海办公室2026校园招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月29日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cee24edccc585e6e571c3e78a4d812af666d351e4252ccdb9165acabc1743de3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Q3uFuOK2vWNygYsjnrYATA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1903be7060bba6700faad919160aa0794741be734e04fecdf37f0c729f9b758f", + "text": "https://mmc.wd1.myworkdayjobs.com/MMC/job/Shanghai---Changle/Oliver-Wyman---Entry-level-Consultant--2027----Shanghai_R_359609", + "url": "https://mmc.wd1.myworkdayjobs.com/MMC/job/Shanghai---Changle/Oliver-Wyman---Entry-level-Consultant--2027----Shanghai_R_359609" + } + ], + "value": "https://mmc.wd1.myworkdayjobs.com/MMC/job/Shanghai---Changle/Oliver-Wyman---Entry-level-Consultant--2027----Shanghai_R_359609" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdtrJE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电科43所2027届校招正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "780cc1651f5c8000fafb280007386cfb4252f4b70e7dc67a41385a9943c97c7d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vMt3Uja_q_Ygwq9nPtxXSg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a19d474eb8a23c316219efdc4786a692948112b9d7c1ea4fe61366ef578877bd", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruvCdb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奕派星计划 | 东风奕派汽车科技公司2027全球校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "db892bee560677be072916858538ee80a5bc7268036c81f5842924b447366b07", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WVSVW8g5Wh0yHfJ4lrQkrg?scene=1&click_id=817763699" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20c889afa5694635c789cf17fb70d731d3bedceefb0a55d26842946221dcfc46", + "text": "https://app.mokahr.com/campus-recruitment/dfmc/182169?locale=zh-CN#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/dfmc/182169?locale=zh-CN#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/dfmc/182169?locale=zh-CN#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWx92z", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "光迅科技2026暑期开放日来啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oY0Pfm" + ], + "value": [ + "光模块" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c19e413ea53b25d14fa07a288b60e3f9b8afd8681b6f7b641fb081a79fa67963", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pLPbGIED5DT-mN6zi7wEtQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2c7efd7c9677e48da537d8e30ff7dc81923643b71852a2d212c1cd1e04ebab29", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rl707B", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "引力波智谱整机青年计划发布!入场,成为关键变量" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80f68dc80a42dbc62e978f5d72365a46625046afb381fc0c044856a7cdfed68d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wShDj1JRbewUWau-BDxtdw?scene=1&click_id=838735726" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c56616e8381306cb7431d5e760f8314556c0a03873b01f4802f14d1135fb1192", + "text": "https://gamstek.com/campus-recruitment/jobs", + "url": "https://gamstek.com/campus-recruitment/jobs" + } + ], + "value": "https://gamstek.com/campus-recruitment/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUKI04", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "岚图汽车2027届全球校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/北京/上海/宁波等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a13b92f5d6288f14aa448243fea77320e82ed50c44b0c4d352f3306b633c7aad", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5x6laCPG-kZgeFLc0v031w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "69fadc6203c6c6f6fa8a386bb6fad9449509c1e7b300a51f362fd1953c7ce3d9", + "text": "https://app.mokahr.com/campus-recruitment/voyah/146293#/jobs?project=100128215", + "url": "https://app.mokahr.com/campus-recruitment/voyah/146293#/jobs?project=100128215" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/voyah/146293#/jobs?project=100128215" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqtQnX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "聚芯微电子2027全球校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/北京/上海/深圳/西安等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "64f1260c7fc3dddc2b444734f9f019d4342288130da579736c7575cf19a12564", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2vZdkWnXB3BQiVZAaKsDhw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c1f260f711dc860c578592fee8462721237a73da77002ac8cb8a1569cb693252", + "text": "https://app.mokahr.com/campus-recruitment/jxw/166492?locale=zh-CN#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/jxw/166492?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/jxw/166492?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDLGNO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "兆芯2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "604544727ab19b700d23233da499e16a634fb5e6d658d4e5b8bb960628efbd62", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EkwAsRwPxn0WqFYikySNjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6a1f17295125302b504d6456443ed6f1d17f289bd03e38b26591a048d6885098", + "text": "https://campus.51job.com/zhaoxin2027/job.html", + "url": "https://campus.51job.com/zhaoxin2027/job.html" + } + ], + "value": "https://campus.51job.com/zhaoxin2027/job.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgsxfT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "晋华集成电路2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "泉州/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1b08773bc1a5b9d091297be365dfddc6745f8db1484b24f6982ef3c7e97c7660", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/edduPfJSYj5lnrRvmKzgcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7a2b98c685ccf9383132a1138ef59a861ea0e558b6163972f33447f0b0b1f679", + "text": "https://www.jhicc.com/Recruiting/Campus/Index", + "url": "https://www.jhicc.com/Recruiting/Campus/Index" + } + ], + "value": "https://www.jhicc.com/Recruiting/Campus/Index" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWBlds", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北京润科2027校园招聘简历投递渠道正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/成都/上海/西安/沈阳/南昌/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "54ad0ecc95f8c400700254b528588c64442f22fa441954f1c60aa2b9deff3287", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vWg4V36sUatAlqndKOWmbQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "616205c9a5d9fe931dfa8b0c5be058a474bf6be9101bc4dc2885df6013caa070", + "text": "https://app.mokahr.com/campus-recruitment/jingweirunke/170057#/jobs/", + "url": "https://app.mokahr.com/campus-recruitment/jingweirunke/170057#/jobs/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/jingweirunke/170057#/jobs/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIdU46", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "沐曦股份2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/南京/上海/成都/深圳/杭州/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26176fdab5134539a85cdf0dba46762d60f4accf0ee60e0efec2c33acf54df6f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/A8SsSL2N-jODfts_JedyCw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6f4420c1186231a6748be576bcb0d9d472b6b231b673bfc834a8b9d56201c910", + "text": "https://app.mokahr.com/campus-recruitment/metax-tech/58131?locale=zh-CN#/jobs/", + "url": "https://app.mokahr.com/campus-recruitment/metax-tech/58131?locale=zh-CN#/jobs/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/metax-tech/58131?locale=zh-CN#/jobs/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5u3zw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "模拟和混合信号集成电路设计公司—Lumissil秋招来袭~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/厦门/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "501cf405e7cd0f57f3ce9978329c28ad111e3087d7e0fbe85fa18f0540bcca10", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oQ8cQJm2ieVS9snhL_wr1A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6a9489e578b31c36f71c9323e4255833b9f57d4f4cf133abf45717fb45e6c45d", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPUss4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯朋 | 2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津/苏州/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c32968c8c6cf134686aab3c7666f58e458f36c44218a38bdb98f6479e0bc8a4a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FQssiCARtQJWCEr0BwWMuA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea2a4f2987c8e85a2cb4e42aee5654129a85379934c53290369c9ba2ffb80bac", + "text": "https://www.chipown.com.cn/cn/jobxylist/213.html", + "url": "https://www.chipown.com.cn/cn/jobxylist/213.html" + } + ], + "value": "https://www.chipown.com.cn/cn/jobxylist/213.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrFFq9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻找“芯”力量|昂瑞微2027届应届毕业生校园招聘开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/深圳/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dcb14109f7e6c877ddb046bd0b7282e22fbda5140f315d3a516e81a58c3944f8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/GimvwW7OgFoOYR4CEkeKzg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "66b723a69d69f46e63a4bd756efbe84e1439d400f4cd53809c299576c50a1210", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlPCrN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中泰证券2027届秋季校园招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月16日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/济南/青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "14ba43427ab5743602e61c8ff762f7a604eeee2a99b775d78eff3e580bccea0b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-9Wd-a-s_Gb9k_N2J2wUpA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9410a4f771c21a4fffccdf7c536c3ab53eed1294a561bd7fe98d233624a44294", + "text": "https://zts.hotjob.cn/", + "url": "https://zts.hotjob.cn/" + } + ], + "value": "https://zts.hotjob.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPjyYk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【凯莱英 让世界看见你的影响力】凯莱英2027届夏令营正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouOdiU" + ], + "value": [ + "医药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ee45052c9d4c8457cb597bb1db92a32d50af737c78b21c95ee25953aa2544004", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Y4HIAwHycfYJy7MiW7D_Cw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "216dec83457b232211f818d09d71e4fcca791ad6aa6b859f55811941e4986d32", + "text": "https://asymchem.zhiye.com/jobs?activityGuid=28ad6996-d458-4a2f-b4ec-4e954f3194ff", + "url": "https://asymchem.zhiye.com/jobs?activityGuid=28ad6996-d458-4a2f-b4ec-4e954f3194ff" + } + ], + "value": "https://asymchem.zhiye.com/jobs?activityGuid=28ad6996-d458-4a2f-b4ec-4e954f3194ff" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9gRNd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘|鼎一投资2027届秋季管培生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c7bea09fac1376b33cbecb572cf16b2b13357bd1e853c481331590bbb0601dff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AdzONP5IYeT5XYbL6M4p5A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d70c0700a0037a3d91ca626a22dba44438d4e70aa7bf59836f1984753d579883", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTKe4B", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招|Babycare2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyr0YZ" + ], + "value": [ + "零售快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2d2dbd4370c208fe2ee518ebdf7e2e623a8fd19452ee99f844f83cb9b070ea0d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ft62gG0j0UiJJclO5rLOGg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5c07aeb1abbbca44a0a87f8d3fc4b36594ea71fb6f7f4811a940f70bd53596af", + "text": "https://babycare.zhiye.com/campus/jobs", + "url": "https://babycare.zhiye.com/campus/jobs" + } + ], + "value": "https://babycare.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOrJLX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "东软灵犀人才计划——2027届技术管培生秋季招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "沈阳/大连/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b18f37701c9880b6ed35e8ba9819c50144f997e24f88f720fc6adb7a2c351ece", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XtUWgbiMc4DQR-bXkzTOug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c47d54808102731b10479910a6be0f538a0a6c09d215497673ab10499c57ec6e", + "text": "https://neusoft-campus.zhiye.com/campus/detail?jobAdId=6cacae17-2ea7-4410-8c76-3c82bc642467", + "url": "https://neusoft-campus.zhiye.com/campus/detail?jobAdId=6cacae17-2ea7-4410-8c76-3c82bc642467" + } + ], + "value": "https://neusoft-campus.zhiye.com/campus/detail?jobAdId=6cacae17-2ea7-4410-8c76-3c82bc642467" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHYxhi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "思勰投资2027校园招聘火热开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6a91e8f4ec446df2d3807c4617ac5ba6029054e75b44d35253183a4af9c7d345", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oqK2QAJzKq6izoi2x6oTGA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bc22c9f7265f571ab10307f217389939ec7c76ee3a70a22e8424747302a9649e", + "text": "https://app.mokahr.com/social-recruitment/sixiecapital/42909?sessionid=#/", + "url": "https://app.mokahr.com/social-recruitment/sixiecapital/42909?sessionid=#/" + } + ], + "value": "https://app.mokahr.com/social-recruitment/sixiecapital/42909?sessionid=#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rf1STR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微风安全2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "33eb5d1977703a7e8334d021ce5374a172fc02d3560a384470958922325d62cf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hABxfwraM9VEIepi2KI1bA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a8ea84ddd97b3ef398f556e89a9b8f0d0ab9b9b2f850669d0877a2352e974872", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhd3Qn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "驭势科技2027秋招正式开启,与我们共同见证物理AI的奇点时刻" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/嘉善 重庆/武汉/香港/新加坡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "66ad9a0cec3fe5d72c742934dde1a6677a0bc83a38fbf5d8bf3e300e0509051b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/O8NlRMyc3d9WZfFfub7W1Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9c3140fe88fb725a84bdaea26894cb0aea3a2491e45e4263216b512e29da54f0", + "text": "https://app.mokahr.com/campus_apply/yushi/3773#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C", + "url": "https://app.mokahr.com/campus_apply/yushi/3773#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C" + } + ], + "value": "https://app.mokahr.com/campus_apply/yushi/3773#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHrFN5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | 寅成智能2027届校园招聘全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785686400000", + "value": "2026-08-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a9b1b0c49d4b203479752c2499d35dca50dd62cfb3f4e7e437d49f90d1e73991", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vHV7qYid8oYkDAQ8taxDGQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0d82b5dfa9875cf695a9f1b6976d93db46ca2143ae7be9964eb26e949d00d067", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHyDoD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "同惠电子2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "常州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9bde3dfc38af5e18d872cd97fe1a3c1f26d3698e24c9585ba77e546b69e538bd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KabSUCBxzJAbFI5t9YbA1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "99eaae0fb767cf982eabdb09f42966d0c6f9b8fa8ae08abe2e13857dc85a66ea", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNG3fN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "27校招提前批|全栈开发工程师(偏前端、偏后端)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80f4e370a10f9e1ef5c7fd5e856a799146a34f6938b40cdb51beb838fad47966", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/p_j6Sm1TahmB3RkadVevwA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f2af1b3a4b2e2b75503a8ae35989301997436b2e98c979e3ed35cf050032f20", + "text": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/jobs?zhineng%5B0%5D=19802", + "url": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/jobs?zhineng%5B0%5D=19802" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/jobs?zhineng%5B0%5D=19802" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rD8QXw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "理工雷科2027校园招聘之寻找引力源计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/西安/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1cb3e3adc31459651836ca57e05f116c79372573b483c600e02269adac4eb660", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wL1iPtMi2CO3W-serd93oA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "31f245713a43064a6d107e104592eb93b8f182431c625eff81c25b6aca16aa3b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYNhb2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "开放日|中国电科产业基础研究院2027届暑期开放日邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "石家庄" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "37a2c90de72c3f8e1f76c995d3444032fa6f468b8a59f3a559feb256408dc87e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hr0XfrifK6_uHk8kVfGMew" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "26567b7e6272110b715c983d54134a02bd19e58c9a59162de79265249968521f", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRPkfo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "逐梦蓝天 连接未来——航空工业兴华2027届校园招聘正式开始!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "沈阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9ccc5eaaddfde4d21ba28433b9344cbf550da5322cf91ac8ec114772f03623c5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rp_AJiEvN8Ix6eErST5aCA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4ce198d206ac64534b43b13652dbd448ad4b7ed45b2420fc3a9b17557489a206", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruRvqR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026-2027安永秋季应届毕业生招聘及审计寒假实习生招聘,网申启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月16日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ae7ebc0bbf99b5122116d53c95696a22d408b9e5ec0709b907dc9005c2690939", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QbRqHK7hdwEV3QM8Oludpg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "32926920090ed4031fbe85550196f234074d623ee271b9d10dae98e84fae0e30", + "text": "https://careers.ey.com.cn/campus-recruitment/ey/166374?locale=zh-CN/#/job/3f07f2cc-f41e-4a61-9203-7ff249953423", + "url": "https://careers.ey.com.cn/campus-recruitment/ey/166374?locale=zh-CN/#/job/3f07f2cc-f41e-4a61-9203-7ff249953423" + } + ], + "value": "https://careers.ey.com.cn/campus-recruitment/ey/166374?locale=zh-CN/#/job/3f07f2cc-f41e-4a61-9203-7ff249953423" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8suRV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "群核科技2027届全球校园招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "671790d74df114db118598f70c2150e669738b9379253b917d8ac7a37a680633", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fk-knUUh3SxSUkYALFjvHg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "492ed591768891a7ed7b13cb0c85faf432c0da07b3a11c5c5ca7730308d816c0", + "text": "https://app.mokahr.com/campus_apply/qunhemail/2832#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C", + "url": "https://app.mokahr.com/campus_apply/qunhemail/2832#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C" + } + ], + "value": "https://app.mokahr.com/campus_apply/qunhemail/2832#/jobs?zhineng=&page=1&commitment=%E5%85%A8%E8%81%8C" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r86egU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "湖南杰楚微半导体27届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cd291e7514560a0e383ab485bd1a8297227f9c67c1cd6a06daa7517bb4cea866", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/z6XL-_wsEYUPYYUQHOWTEQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "72627aaa300918bad2c3c318234ffe4cc17bc4d8f4abcf2668046d6cc2ff06b7", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhYUuM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Mizzen AI 校招开启|一起打造下一代 AI Agent,年轻不设限!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785340800000", + "value": "2026-07-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27b27f77384250c49a394f8bb1ef99c4575754a562a366724e78f55548501029", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EuJC4BLizdSzKop1XIkI1g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4098bf9bf43d42395f4277c0dd0f934f58a2086fab5ab3ecb8f4fce750da4e20", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHs5HW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "怀柔实验室2027届校招菁英选拔营暨暑期开放日招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a7deadafa07f6f18c480dcac4d685c7a213dc7d39b8599d44a89c45aa32fd27e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KqjCo0GvJGTl7s2vE6yZBA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "14d22534df7890f1c4a56f136d41aec35ae50574fa06269d7c0830ca669dcf2e", + "text": "https://wecruit.hotjob.cn/SU6286556c2f9d246627874843/pb/posDetail.html?postId=6a696da6e05c792b8ed1b158&postType=campus", + "url": "https://wecruit.hotjob.cn/SU6286556c2f9d246627874843/pb/posDetail.html?postId=6a696da6e05c792b8ed1b158&postType=campus" + } + ], + "value": "https://wecruit.hotjob.cn/SU6286556c2f9d246627874843/pb/posDetail.html?postId=6a696da6e05c792b8ed1b158&postType=campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rebPMs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "积海半导体2027届秋招开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "631f3e9470fbee1926e7644e4fb08a4f056887b285fe3975a7f60273f8968b9d", + "text": "点击查看", + "url": "https://ghsmc.zhiye.com/campus" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "140c2bc07c125cc2e7f32f0a87a46a1145c02d8534bef1c4248142049653cebd", + "text": "https://ghsmc.zhiye.com/campus", + "url": "https://ghsmc.zhiye.com/campus" + } + ], + "value": "https://ghsmc.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmyDpC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯光耀未来 | 上海光通信2027届【泰山计划】招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dab5d3234b73eeb9406658d32f7dce4f95e1b0796efe8e00019a943cc283d6f8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8lC0Xy9O4NW37w3XSmatUQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "434d8e7e68c1d8bf331b5ddb3ec6225a545ef7e12649e0e91f75102b68117ab3", + "text": "https://app.mokahr.com/campus-recruitment/gtx/102188?locale=zh-CN#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/gtx/102188?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/gtx/102188?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rglJHr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "邀请函 | 中汽工程2026年暑期开放日 · 正式开启报名!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2cc34afbce02f712b705209f31c324478f24d257e6467d79bd49f0f87d608298", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/egQUcx0BGz80eyJxHKRxyA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b786a62d3af5cc9bced89804839bfd5c632524f365d32f4b15d4bfa1a76c5bb6", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4COMS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥比中光2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oaByde" + ], + "value": [ + "机器视觉" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/佛山/西安/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d0c00d55ebb993ce3e6da3c79d1d88ed7ee159e4c561241a8da712383dfe78b4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SEWDaGrFu0PQQpDz6_8D6w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0aee1c6dc1d74eefd7b792e2f09ee74fe52cc7cd0ce85f0a9194f6f658ae7b72", + "text": "https://job.orbbec.com.cn/campus", + "url": "https://job.orbbec.com.cn/campus" + } + ], + "value": "https://job.orbbec.com.cn/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rad2FK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招丨金升阳2027届电源研发岗提前批招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o04fQQ" + ], + "value": [ + "能源/电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/长沙/西安/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4ac819ec153d77fb5cef62c0022e593ed26058b9a13574ba97034736564beacb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dtM46pw1H4AYfRJvdlXxRg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f1a3d4994b956cf8c0b2a32811ea6d4332af5e3575716e622da53a0747551e5", + "text": "https://mornsun.zhiye.com/campus/jobs?sessionid=", + "url": "https://mornsun.zhiye.com/campus/jobs?sessionid=" + } + ], + "value": "https://mornsun.zhiye.com/campus/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwwM5M", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "绿盟科技2027校园招聘提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/西安/武汉/成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4dcc2dc14315a84b1ea3ce918ff057c4a79e3d95c18b044b0846be38fa081417", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NkIQJ5XKegQfovSOp-iauQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87d5dc6fa0dc804a19af0061ce708a441457ef95c430ff11f599e5807508f76d", + "text": "https://app.mokahr.com/campus_apply/nsfocus/29118#/jobs", + "url": "https://app.mokahr.com/campus_apply/nsfocus/29118#/jobs" + } + ], + "value": "https://app.mokahr.com/campus_apply/nsfocus/29118#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVNyTn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量智开物2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5efdd41b4ca7a08178c8f4b7646517e1df9604560d03fd70bc363604c23fc9bc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Dz18iSt1ggyjypFV4tjFzg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ac09415b0109f1fcf3fa6fafcd9c7274c8effd899abf753fcce7dda275e5aa6d", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rT2Ftn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "新能安AGT全球顶尖人才招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785254400000", + "value": "2026-07-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "372d24a6b86bf57ee52f20d4452b4a08fa398dc3ccd6adf96e6dc167a69603ca", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WHQi_ql5V2wRPHU4_-_w_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "04c902486d7ab6d7353f354e30b5d1e2d6579f6751ffd1241bb097a67647d890", + "text": "https://wecruit.hotjob.cn/SU6a602354ba2dc64cbb8b78b8/pb/school.html?projectCode=505401&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU6a602354ba2dc64cbb8b78b8/pb/school.html?projectCode=505401&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU6a602354ba2dc64cbb8b78b8/pb/school.html?projectCode=505401&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rM3TQU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "龙吟四海 旗聚英才 | 杭州龙旗2027届全球招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d6ef1846a8bcc70130a20ad7a46e188ea6e97aaf2d47f7f5c4951d226a34cc65", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UFZiCzvSNlOsSA0RpD0x_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "753fd7bae012249d37eb55371c7f3bd69721d14a1c24bb9a42551c00d952cf29", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrvyE6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【首形科技 | 2027届校园招聘】正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7904bda4de017b5d90117d3c335311a5f87f360ead69135a5264ff1bf092afe2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AvEPdCqaNZ-3_VjwiA_rbg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a33f5df7b98ce29bc433e8c4dc269ba96957d61130c4b8c97daf4ebb6e695f44", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlMMD8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科技提升价值 创新洞见未来 | 北电检测2027届校园招聘,邀你共赴“芯”征程" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "41bf3501f10b756a6be8e2f5f1fc8f1c31eb63c8ee6a23a2a1214720ba7b2d6c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kuLgdHAdNNYzZTVWQJQl0Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5cb32be4b396e24fa293b995fd17e717f52a9ca2fb83e551188623aaec8aeaf2", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUNPZT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "紫光国芯2027届秋招开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安/上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e67dd53715759579baa2c1b991fa8bee1948c0df2f611fc32b19fc25651ad313", + "text": "点击查看", + "url": "https://young.yingjiesheng.com/xyzlogin?ctmid=3301c7f1-2aac-41f6-a659-3d230ba7916e&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3301c7f1-2aac-41f6-a659-3d230ba7916e%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "edb110b359df11f012d00be01c6e8c419b55ef0ca07b7123ddb21b1f24410db4", + "text": "https://young.yingjiesheng.com/xyzlogin?ctmid=3301c7f1-2aac-41f6-a659-3d230ba7916e&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3301c7f1-2aac-41f6-a659-3d230ba7916e%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r", + "url": "https://young.yingjiesheng.com/xyzlogin?ctmid=3301c7f1-2aac-41f6-a659-3d230ba7916e&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3301c7f1-2aac-41f6-a659-3d230ba7916e%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "value": "https://young.yingjiesheng.com/xyzlogin?ctmid=3301c7f1-2aac-41f6-a659-3d230ba7916e&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3301c7f1-2aac-41f6-a659-3d230ba7916e%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAwU48", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "和谐健康2027届秋季校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5579bf955264e6180b74c625b74b610421d6961f729d76d861fd4d85825d8911", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JDEM-fM3PCcYjUBlTZTPsA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0aca57325ec7d17f1a18a4383f3e2f5fee6d3ff14a339062b351de2c2666df9f", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rE3L7n", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "经纬开物2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3cba02c300d5e691a3728fc2f784b0863a99cda649da1d7e58b7a0e32dc37163", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VKb_S57MFRDbFcHeJLVHMw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a44659789831611682ba0f4f1547b65872eae0560083e630fba447c8c5631fe0", + "text": "https://jwkaiwu2.zhiye.com/campus/jobs", + "url": "https://jwkaiwu2.zhiye.com/campus/jobs" + } + ], + "value": "https://jwkaiwu2.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnjXxj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥马冰箱2027届校园招聘提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oV8yOp" + ], + "value": [ + "电器/家电" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广东中山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "64e05831c4ab7120838a2527ffa144a99dbdc6974961d66f0d105af4eed6761e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2TiFTmgUwEF_BgNXR9Bxng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "89fdfecf861a5e8f6e8ec383f5a9f3b5480fc12e594f672b7850b9efa9a6dc78", + "text": "https://homa-hr.zhiye.com/campus/jobs", + "url": "https://homa-hr.zhiye.com/campus/jobs" + } + ], + "value": "https://homa-hr.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rR3ttm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Recruiting | ZS致盛管理咨询2027校园招聘火热启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1785168000000", + "value": "2026-07-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月25日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b5d5eb84b57db14a3cdd5187259525e58c1b6c1856314db2d95698aec1916cdc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UxCe2CSD5u00R3QT6bFXHQ?poc_token=HBR_aGqj_GzivrVZWFy5-pUX4Uakts0_EY9zIGhq" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "cbda1a9a5e92be5b3288719a4f8fb9e64a96de82c185af2e0d00047c854e113c", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwdJFS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宽德智能学习实验室2027全球校招启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ec12ed1656852f951bf3b87fc97ca601ddee019078c645ae0078f1e7abb38bf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Ae7aXYKrscnPd10OVlAFbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6f5b64e09a068d1e4a8924ff217ecea006f095c179cdccd9d442a10dfe6c86e6", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvY1eI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "经纬恒润2027校园招聘简历投递通道正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/上海/西安/武汉/南通/南京/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b00fef21b2f6d032c847e1522e1587137aafe42edffa610e95c0a1516fe6c070", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kIfWojWsFRX4Q8U_wsPogg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "417d49109cef2a9ef505633a045f155e7d8c24c8c49670721181e77029b12168", + "text": "https://app.mokahr.com/campus-recruitment/jingweihengrun/168294?locale=zh-CN#/jobs/", + "url": "https://app.mokahr.com/campus-recruitment/jingweihengrun/168294?locale=zh-CN#/jobs/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/jingweihengrun/168294?locale=zh-CN#/jobs/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg1j1l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "瑞银校招 | 2027亚太区校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/香港/台湾/新加坡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e0533944e33f37b00d44113bc8e0d654f800bc42666208d87f81dbd14ccb6f95", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/26fctJ55xaFk7BXb3jOxkA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "552850f2af12d5c639f9213bcdd6634512aca2fd8713b2603586c432c9f5eb46", + "text": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fjobs.ubs.com%2FTGnewUI%2FSearch%2Fhome%2FHomeWithPreLoad%3Fpartnerid%3D25008%26codes%3DIWECHAT%26siteid%3D5131%26PageType%3DsearchResults%26SearchType%3Dlinkquery%26LinkID%3D16893%23keyWordSearc", + "url": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fjobs.ubs.com%2FTGnewUI%2FSearch%2Fhome%2FHomeWithPreLoad%3Fpartnerid%3D25008%26codes%3DIWECHAT%26siteid%3D5131%26PageType%3DsearchResults%26SearchType%3Dlinkquery%26LinkID%3D16893%23keyWordSearc" + } + ], + "value": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fjobs.ubs.com%2FTGnewUI%2FSearch%2Fhome%2FHomeWithPreLoad%3Fpartnerid%3D25008%26codes%3DIWECHAT%26siteid%3D5131%26PageType%3DsearchResults%26SearchType%3Dlinkquery%26LinkID%3D16893%23keyWordSearc" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsNDTd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | 艾飞智控2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/南京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd7f8f4fa12ec7432ed14dafbaa5df45b7ce50416d5e8daa1b41cc32df021686", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6CJcEQoux6szokXQVGTTMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b4922477e574838db6c82ad6315732939d8f4b511e87164d2da0233450ffabf3", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtVOxH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "我乐家居2027届校园招聘提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oV8yOp" + ], + "value": [ + "电器/家电" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "66fb1a60131d2c939808c65c458e94a8e837769688c8bf40811de273e7f7b8f6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OrUzF6Fnqm3V2MqSBreGuQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "38e9c2ffc52de5549db784c99ebe5182f7cf8b745c7b1ee7e2ba8f46566251d3", + "text": "https://olo-home.zhiye.com/campus/jobs", + "url": "https://olo-home.zhiye.com/campus/jobs" + } + ], + "value": "https://olo-home.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqhnIn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "时代共赢私募基金2027年校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3f6025cba985cf2bc9cd4d18852f6cf70b6a8f676241f7cceb8b4f04099355c2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FsEKdNvZEhsNXPeDyG6nXQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "78069e12a4a9033e03325ee977c2382f30ca91b373f7d70957e8b68609257e61", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ry7w5E", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长亭科技 2027届 AI顶尖人才校招正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳/上海/广州等全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "24d32b62cb402888f6e5baf2bf029c4aaf77ef0ec0a0f79ad733736bdc1eb44f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vrlGJJIuzP90lo8_n_Q4pQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dacee4ccf4a80b7d7dd30982e7630f4c4729f8308213ead1a2b76e420a3847d1", + "text": "https://join.chaitin.cn/plugins/career_site/sites/default", + "url": "https://join.chaitin.cn/plugins/career_site/sites/default" + } + ], + "value": "https://join.chaitin.cn/plugins/career_site/sites/default" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWJctH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "三安集成2027届校园招聘正式启动|微电子所就业27秋招" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "泉州/厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "04aa7325ec80814ab77dd04d6fba8c878102fad48f9cbd3a5436ffdef1184351", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/i9w27V4Nnssdk5TLORxqoQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ef94fb294ef15bdfa21398778f91aa9a5afcc8c2f3e0a756ebb2c8e9a05ea400", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTwlg4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“芯”智能 “芯”未来丨士兰微电子2027届校招正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784995200000", + "value": "2026-07-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/北京/西安/成都/厦门/无锡/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cd2276c994ec9cd059faa1af6d83a168b17c40539e8e224f5729dfd7b428e3cc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Tq1okMUfcQ4tZH7lrEnY_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "303c171a26dbb6c6a4e4980450cbfa2bccbb594020943d74923f8a1d704288ec", + "text": "https://www.silan.com.cn/index.php/about/post.html", + "url": "https://www.silan.com.cn/index.php/about/post.html" + } + ], + "value": "https://www.silan.com.cn/index.php/about/post.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWaZ8p", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027空天院校招提前批暨交流日活动即将开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/苏州/济南/文昌" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cc0deedcd917e9115eaeda2d91612dc7154c205ad1dbda942b1d81804e10c634", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EWWcco0ufDklFRKstoJLhw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "dns_error", + "result": "unknown", + "status_code": null + }, + "key": "ec742a24e4d04f982a1600eebf1e043ffbf43ec9371509380ca6c25d90abdc3c", + "text": "https://https://zhaopin.aircas.ac.cn/", + "url": "https://https://zhaopin.aircas.ac.cn/" + } + ], + "value": "https://https://zhaopin.aircas.ac.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvpAkO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【兵器未来科学家·2027届博士招聘提前批正式启动】" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/太原/重庆等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "90181cc4b8ef71e733f980e75090b4413692018cc36a358d9f47f48dd11e1e4a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XDNbYhn2NJElXHCKLqP0mg?scene=1&click_id=919654967" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "09ecaa77ad15b709f4641326f5450845ed63d94c07d8dfa587ccd65ce810c376", + "text": "https://norincogroupzhaopin.zhiye.com/campus/jobs", + "url": "https://norincogroupzhaopin.zhiye.com/campus/jobs" + } + ], + "value": "https://norincogroupzhaopin.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ41ys", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "极目智能2027届校招正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "857a0ae8d8f624c55a62300a6056f2a11196283a5589135253925a3adf76f47f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ROTZrE678GYJPoCChpTCcQ?click_id=904456192" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "32c28afe12ca7d1fba1eb9b4a8ef90f3dd03cbae99a2f8454d5fac3fda54a01e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rp9oCI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中祥英招聘|2027届校园招聘提前批正在进行时~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/重庆" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e4b0e5a1019bf97fa4ea6451251732bf50d289aa25190e3d9f086c4c122e8c8c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NLHDFgQVsLK747xQQOAceA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "565c21648dce40ef9518182672b8c4edc740e3f98ad716c53c0e2549a8961ddb", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBjcLl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "极飞科技 2027 届实习生招聘启动,共赴农业新未来" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0a76e487d86aa4d2f6ebd4b0d2079e8dd3af886b4f8c5d776688210d3c369024", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Syy4Fh4sMEMW2rVUUQRW6A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a2f68e99bb117332530612d75f00a8821ccf7ea5ae4dfb34c666c5d65b976ac", + "text": "https://zhaopin.xa.com/campus/jobs", + "url": "https://zhaopin.xa.com/campus/jobs" + } + ], + "value": "https://zhaopin.xa.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rovu9Y", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "四川天穹智创2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "四川眉山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8d68d0187a97bd60152fe971880a8b93779eae712781c7a8ad473bc58f68bead", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_GJ2siPf3eFGru2B0GAt2A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "efe88835ee3a9f86d054595bec1c1d2578d470e9ecabd20b7f0fab75d67775f2", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQa8e3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027届比亚迪博士校园招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784908800000", + "value": "2026-07-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/西安等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fb08e61a6bdd135af88e7fb2e7c76a029135eb645cd895dee376da214f741f51", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vhFFMMRRa7KBK0jWKBTY0g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7b5a9c28a7fc2632cd8b9b17f8250a6e6655c1eb669fb14790534d05aaec00f8", + "text": "job.byd.com", + "url": "https://job.byd.com" + } + ], + "value": "job.byd.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFWEPS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "清芯致远 领航未来〡华海清科2027届校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784736000000", + "value": "2026-07-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津/北京/上海/广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bfba6711965936c0298d31a68c04c3d7f123b4433efe467483d439b98a76a244", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ax1_k9OTRlBYmqfpkUj7Vw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4fcf6c354da9662c4a4667b91f0c27eaf2d5a0f6adb21fc874746a844354f32a", + "text": "https://hwatsing1.zhiye.com/campus/jobs", + "url": "https://hwatsing1.zhiye.com/campus/jobs" + } + ], + "value": "https://hwatsing1.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6nrp2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "理想汽车2027届顶尖技术人才专项“理想+”计划全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784736000000", + "value": "2026-07-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/杭州/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1f4980d720a13c16069661ab54f592b4622773a58ea861f13457dadc1c39cb0a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OucaQ21na9h1LXnfTPWbmQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0793201d8de6f61e2758bee808fa05232c185bd284bc89bfc3497fbc626f30fd", + "text": "https://www.lixiang.com/employ/campus/list.html?job_mode=1&project_id=15&employchannelcode=7B8MZAZ&fromJob=1&sessionid=", + "url": "https://www.lixiang.com/employ/campus/list.html?job_mode=1&project_id=15&employchannelcode=7B8MZAZ&fromJob=1&sessionid=" + } + ], + "value": "https://www.lixiang.com/employ/campus/list.html?job_mode=1&project_id=15&employchannelcode=7B8MZAZ&fromJob=1&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsBLqX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年辉瑞中国研发AI Pilot实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784736000000", + "value": "2026-07-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f7338aaa864a6c8ed5aa0a68a37a23845302b1acbf0972f71bb90fbdf0f17d2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/M98n8YccOR1cZC72GtMsXw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "58869c08a7aa8dae58fd110417ed6c14f637d78d64c1a54f5edbe174ef5fc788", + "text": "https://careersite.tupu360.com/pfizercampus/position/detail?positionId=6a5dc53acf856c3f733f81b3", + "url": "https://careersite.tupu360.com/pfizercampus/position/detail?positionId=6a5dc53acf856c3f733f81b3" + } + ], + "value": "https://careersite.tupu360.com/pfizercampus/position/detail?positionId=6a5dc53acf856c3f733f81b3" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZFf7j", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中望软件2027届秋招开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784736000000", + "value": "2026-07-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/上海/武汉/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7a988d1239d57e5797aa82e257d2422bfa77ff99d8695cac1330b720d694776a", + "text": "点击查看", + "url": "https://www.zwsoft.cn/job/campus" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a43e25ce397d6d9fb08bdfef21f5e28e423633313cc4a54910994d31ddecb22", + "text": "https://www.zwsoft.cn/job/campus", + "url": "https://www.zwsoft.cn/job/campus" + } + ], + "value": "https://www.zwsoft.cn/job/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTIqwO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "思考乐教育集团2027届秋季校园招聘启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784649600000", + "value": "2026-07-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odCx1H" + ], + "value": [ + "教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/东莞/广州/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a9f4391afc24b580193aa6c4d43a0576f7e102ff2c12e01b6ec9e4ecbf660134", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ySlINhdtuub3psuRK7L3aA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80537349bd13c99996924ed56e94c626b584a69ad6fbb7452677a109d30bee8a", + "text": "https://jobs.skledu.com/jobs", + "url": "https://jobs.skledu.com/jobs" + } + ], + "value": "https://jobs.skledu.com/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHRUvY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "艾为电子2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784649600000", + "value": "2026-07-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/合肥/成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "625a288ae0442891d70c3868bb1e94d5096f34bc722d726b57d031d24d90772e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CJD4SD0lXXgX0sN1x2QoQg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5dbf8e324276f7a6da9660e727a66fc2f8f1f6a6277775f4cb3774e306edfb8f", + "text": "https://awinic1.zhiye.com/campus/jobs", + "url": "https://awinic1.zhiye.com/campus/jobs" + } + ], + "value": "https://awinic1.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rl17mC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "前海开源基金2027届校园招聘暨暑假实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784649600000", + "value": "2026-07-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1c9349a64aa3c15d5673192b0368f193996988afcbe67e06e3c278650433380a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IzcAgAhGir7_ZivQJhSPIA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26cc083ea85da26d41084ac33670cd12f0b9ed7d2c03eef8592af1b1b664c79c", + "text": "https://qhkyfund.zhiye.com/4/jobs", + "url": "https://qhkyfund.zhiye.com/4/jobs" + } + ], + "value": "https://qhkyfund.zhiye.com/4/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkjLsn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | 3D+AI | Meshy 2027 校园招聘正式启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784649600000", + "value": "2026-07-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e3eac3ae8b84ab5293d7ad61b0b132386d7f4c3a11bbe9d97a3aa4547d511104", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/K5yQ89R1D0why_H-F5X--A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "fa0a2bf6040ed993bc9477b4244813402e0b27e89a5b1f75a65243615b8b671b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhAQU4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "vivo 产品总经理储备计划|全球招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月2日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8a5fd6a05da374c4eb589b5042fec155245ae8dd690fdb913a3a8d4869a78822", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sXa9Iu_Cci-TJXEuOO0CcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bf2a80d71fd83b39c6119432127aa8431928c3f9e3a8efd6a679c8b198b24cee", + "text": "https://hr-campus.vivo.com/jobs?1=%5B%7B%22id%22%3A%2213%22%2C%22label%22%3A%22%E4%BA%A7%E5%93%81%E6%80%BB%E7%BB%8F%E7%90%86%E5%82%A8%E5%A4%87%E8%AE%A1%E5%88%92%22%7D%5D", + "url": "https://hr-campus.vivo.com/jobs?1=%5B%7B%22id%22%3A%2213%22%2C%22label%22%3A%22%E4%BA%A7%E5%93%81%E6%80%BB%E7%BB%8F%E7%90%86%E5%82%A8%E5%A4%87%E8%AE%A1%E5%88%92%22%7D%5D" + } + ], + "value": "https://hr-campus.vivo.com/jobs?1=%5B%7B%22id%22%3A%2213%22%2C%22label%22%3A%22%E4%BA%A7%E5%93%81%E6%80%BB%E7%BB%8F%E7%90%86%E5%82%A8%E5%A4%87%E8%AE%A1%E5%88%92%22%7D%5D" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6CjgT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "NVIDIA英伟达" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27848300e753b6ed4778263c3ff8254c92a603a3ead80c1a68f29bc7e63bf7cd", + "text": "点击查看", + "url": "https://app.mokahr.com/campus-recruitment/nvidia/47111?locale=zh-CN#/jobs" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3dfd6405f575a9abf21962d28df097748a18d45ff59c7beb8ea2cbfd049bd490", + "text": "https://app.mokahr.com/campus-recruitment/nvidia/47111?locale=zh-CN#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/nvidia/47111?locale=zh-CN#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/nvidia/47111?locale=zh-CN#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnvyov", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“箭”证硬科技,“元”梦行者路|箭元科技2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "orfh9Y" + ], + "value": [ + "民营航天" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "91368e7ea78da06d206198621ac760125d3053bf66c46700400b582eda180512", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YRwHuW3l4GfvHflYYtk8tw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "680142cd1fec9ebf6c6c8d20a46c631bd133e079d2a38daa0b6728071b11710a", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSYp4u", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "妙芯微2027校园招聘,职等你来" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b2d53c2989cd68dfd841fa5c2be1de1e4b3b8d194773124e7487a8bbe4bc7f2b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nOoltn4vYMq_5q1U6fYv1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "19fe1f76514d35551e28fc903047da9ae516aca13669e34574dcb23680838203", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEEGzG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星纵物联2027届校园招聘全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f8f6e8b586f31694101d17a46626ada950a9cd36930185cf27da31fb5c868ea8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0_8l9IU9D1jNGx38iaSipg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f57000cdcbf64cbf62005390b6ec1559ea647c65c7558493f429e52a805a70ea", + "text": "https://milesight.zhiye.com/campus", + "url": "https://milesight.zhiye.com/campus" + } + ], + "value": "https://milesight.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCuuts", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星纵数字2027届校园招聘全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a211ef9a87a9480c93aba340c71cc7b59bd182cd7f95f81ec7da40dc8b3d444a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_ffZUTEHsEUpY80jQJLrYA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7372798bdebe9a7c2a22fab4ddd2077767f8fae4f64bb9d8727aea43ddaef23d", + "text": "https://yeastar.zhiye.com/campus", + "url": "https://yeastar.zhiye.com/campus" + } + ], + "value": "https://yeastar.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rc5lV1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鹏新旭27届博士招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784563200000", + "value": "2026-07-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3de31f514aa29686b696dc0cfaf74908fdb51f56a574c056d3ba939612396262", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CARwf-LxRjtHuUYl-1BkIw?poc_token=HGBsX2qj85I7HLwXLXnB3LaAFRY8kvhGAp7THNdL" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "08fd87c7c9c5928c59cc26cb34885eb6de7cbc1598117bffa3707698d9be80ac", + "text": "https://pensun.zhiye.com/campus/jobs", + "url": "https://pensun.zhiye.com/campus/jobs" + } + ], + "value": "https://pensun.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rT7loO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "深圳方正微电子2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "92ed2ea81655e1b5dc1a9e1036d6590d1c16d072c6fc4ca0f5b52eb54b6a153f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2G1Ic51J4v40n5NhwA3iwQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f6dfcb625aab9f7d0dc542a2fc8c9c22d9779e58f618da3e4b29912e405c63fe", + "text": "https://founderic.zhiye.com/campus/jobs", + "url": "https://founderic.zhiye.com/campus/jobs" + } + ], + "value": "https://founderic.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPtZyj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯原股份2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月23日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/成都/广州/海口" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "036f14b3d427a7c51c7a6991a430c1772acfd76dae248d9c1034a3a2fb76853d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2mXVVsI5lN2yHHg8YidDKQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bb30bcaee4fb507c3f33f40c901b6e3bfc59735dbac0495ae307ccc50e9352b3", + "text": "https://campus.51job.com/VeriSilicon2027/post.html", + "url": "https://campus.51job.com/VeriSilicon2027/post.html" + } + ], + "value": "https://campus.51job.com/VeriSilicon2027/post.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKN2F0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "轩宇信息2027届AI专项校招提前批招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f5b20fafb35984b41123c45385c4233c554c82792da99d0fbfbc499ed970ea27", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rnDARx7RyEfEKK5zRdZlOw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7acb867db2c765ecc303de4f37e88e152a2df1f6170beda2bad20b20f4dfdf27", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgJGwC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯之所向,逐梦恒玄 | 恒玄科技2027届校园招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/深圳/成都 /西安/武汉/杭州/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "32c05f2d3c4a965dea29d1c17a0e0b24f20e8a3960f7f573a84e16721cee2068", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-FB2sbdEuxzpHLL-DNdQSQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e59f0c8d1ed6e1967ce2e9a10f563c031d106e438cfaf4fefc5d78a391b22f39", + "text": "https://bestechnic.zhiye.com/campus/jobs?memory=%7B%7D&silence=1", + "url": "https://bestechnic.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "https://bestechnic.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUyPQV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "赛美特集团2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5e68d6a982601a8df360d46b5f562312b44db0bcdb140827b8f8b3375df1360d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4pX5xia3QbiLX_1NRvDXsg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6ca4df906089a6d73011e705b8efefea5f57c65c3b38bddab11d9a3a6e2bc7a", + "text": "https://semi.zhiye.com/campus/jobs", + "url": "https://semi.zhiye.com/campus/jobs" + } + ], + "value": "https://semi.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKZqxx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "瑞发科|芯动时刻,职造未来•2027届校招正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "154ae87aaebbadda1fbf415a6c29541ee76ef114007a51b842c619af4a9be995", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UgfrTEnSN2ViV4yZFAyK5A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "75a96e68f8ea3b6142dcaab1a2b5d58a8fac88608950a254a26cbdd92d41e799", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZVt2z", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯迈半导体2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/深圳/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "28c2ead4548de09939f80fa23fb001b2b5e56382983af3c4e4c3b63dd359bcc3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/aqUw8Ozdj_b_rJIo7Vwnig" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35ffb1ba8523ba742d65e7acc62660432982e02740d0a24903fd681248fd58a6", + "text": "https://young.yingjiesheng.com/xyzlogin?ctmid=3e160048-a22b-446f-899d-7bc0a9a6b8db&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3e160048-a22b-446f-899d-7bc0a9a6b8db%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r", + "url": "https://young.yingjiesheng.com/xyzlogin?ctmid=3e160048-a22b-446f-899d-7bc0a9a6b8db&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3e160048-a22b-446f-899d-7bc0a9a6b8db%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "value": "https://young.yingjiesheng.com/xyzlogin?ctmid=3e160048-a22b-446f-899d-7bc0a9a6b8db&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D3e160048-a22b-446f-899d-7bc0a9a6b8db%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcWQTu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园招聘丨柏楚电子2027届提前批开启,寻找定义未来的柏Xer!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a003f5b1330d8333bf5c35b7d5bd923f0bbbaa4d482bc144df24fbd83cef71f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/F_ehY3q8Zi3-QV-AwoOF5g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "da719d2a123243fdd421d5a7286e0b54809b48a8e5eeb65e06b48b7b2831fdb1", + "text": "https://fscut.zhiye.com/campus/jobs", + "url": "https://fscut.zhiye.com/campus/jobs" + } + ], + "value": "https://fscut.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqTyP3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "新易盛2027届秋招提前批&开放日正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2b23c24d4989c7658136604a1e58608454072355f81f70df59bf62be0a4f4b4b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_mV1dXRJ03rMEgTSivJnxw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f598c159f0148a7b37f328a80e691f5b0bbdd85179a7533338171a4463af6b6", + "text": "https://eoptolink.zhiye.com/campus/jobs", + "url": "https://eoptolink.zhiye.com/campus/jobs" + } + ], + "value": "https://eoptolink.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPxbdb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航天五院2027届暑期实习实践招聘开始啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784476800000", + "value": "2026-07-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/烟台/西安 /兰州/深圳/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "39022efdcac3f180988a43517407047f62e748342fcc6f2a3f2e1abd106d06cb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Aw8evom_2nqqsAtvp9u4rA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f907b5f7d0d808f539faf1506770c8df4a6060c7292cf1b6255e093fb82a4ec2", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNJFOx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星尘智能「探星者」2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a14e7ca94e621741dfb094b3d68d29a4e32848927dd2568cb0fa6798faa9c03", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/px1vDoAbCm7URdKxLEsj-Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6358d3626b05a46114245abd07757b6658b29196a0baf304e6a42f214f85e956", + "text": "https://app.mokahr.com/campus-recruitment/astribot/144862?locale=zh-CN&sessionid=#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/astribot/144862?locale=zh-CN&sessionid=#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/astribot/144862?locale=zh-CN&sessionid=#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raX9WD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微光筑芯,源赴山海 | 微源半导体2027届校园招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3e630d5e4c05239e9d7162c6171270992f95918aee99c0e7043f5e3cfd626c0f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oBI7K8qOepV5QUgjYoibTw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "676161e46c4aa7a8c1b93881c0b58fc380e738a9a694679e9ea1f64b1719bd63", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvM4qE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Unity 中国 2027 校招储备计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "66cd84d87866cb12a0041e837040b5bb5ff0f5900185e3dd7fac5c0299a81dd6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8Y21lg0t9kzWN-InytZ-Xw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2a1b7eacae17444e41f792eca264f3b396b1e4ff7c74950b56c62e8395fc9556", + "text": "https://recruiting.unity.cn/982864/?sessionid=", + "url": "https://recruiting.unity.cn/982864/?sessionid=" + } + ], + "value": "https://recruiting.unity.cn/982864/?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rn2zR4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入我们|知存科技2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、杭州、西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f8d676def53e2496d4d538f0a2e1a72c51af9430b832419a23ebc88e09027642", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0Ro7G_0Ct4zKUVdF8C3jRw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6fc27041e1df4cda0854ee849a99b660b105dd749670a90e3843f52e9dbb5f36", + "text": "https://iucylxooqp.jobs.feishu.cn/200839?sessionid=", + "url": "https://iucylxooqp.jobs.feishu.cn/200839?sessionid=" + } + ], + "value": "https://iucylxooqp.jobs.feishu.cn/200839?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcFgSU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "语核科技2027秋招|寻找闪闪发光的你" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6b81f56b76bf880c8e30dcfaf0f29e4eb126faf16c0727aa628db37d66db70eb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2BCTyDPwgtJCH1UaBRZV1Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5dd1ba48cf81279a26023562779de8c1399e4c578def950b39eee9eb10fc121f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5H6Tw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "tap4fun2027届实习项目正式启动!实习表现优异者可获转正机会" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784217600000", + "value": "2026-07-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80ac4cc27b06f6bba628c56eea9466846334dfee09d02b68dd808e0630b9d04c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/jxpiTq3kIQt0bveHFSG9NQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "10478c8c0d27c754e300320ae42f5042dca40560809ca0d920b78dc57fc0c984", + "text": "https://app.mokahr.com/campus_apply/tap4fun/291?sessionid=#/", + "url": "https://app.mokahr.com/campus_apply/tap4fun/291?sessionid=#/" + } + ], + "value": "https://app.mokahr.com/campus_apply/tap4fun/291?sessionid=#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnP9gd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "无人区计划 | 深圳信步科技27届提前批启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aea01f4977416a4ea49d52e06762b40b7a069722c6bae382ea2eb343681f6f4d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PB1ozjjAEKeidknM6RE5wg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "08d65d8a44e57f27bcaa18a8d413ad62f4b479940752a955dc607d158d15baf0", + "text": "https://seavo.hotjob.cn/", + "url": "https://seavo.hotjob.cn/" + } + ], + "value": "https://seavo.hotjob.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJ4B1W", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智启量化 共筑价值|爱凡哲投资2027届秋季招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ee4543f4e7c52e60a999bbe1afc4a71ac16c1aff4856fd79b684aba62fba38c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PaCfz4jPi067slfL-SuyyQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "cd6c4cd7e3dff17d06f180e37c98993a97b953054756dbf54a2b48ec38145c4a", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFnnyf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "43所暑期开放日邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "325b58c8f7a4966d4e5a654be83dd8d81e5b23fdbc907737bbdb26463cfadeec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KFeIKahkVema8eKFh3rw_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b1612b5cd606fa48ab4d4951acd45671a8048210277ae0e71cceab4f09b9c837", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMvtiU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "麦米电气2027届硕博高潜人才计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o04fQQ" + ], + "value": [ + "能源/电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/长沙/武汉/西安/杭州/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "633a39f15b6c9ab65539f7114cf2578cda0758d643f0a7c7b41ccc9881004a0b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2VJZONDzxzn1GAzYqwMPqw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e046d7662842b8f6125f19b7123af5f4bff8353b2d586ec6cffc240221252c35", + "text": "https://wecruit.hotjob.cn/SU6282075e0dcad413c09efe26/pb/school.html?projectCode=201301&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU6282075e0dcad413c09efe26/pb/school.html?projectCode=201301&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU6282075e0dcad413c09efe26/pb/school.html?projectCode=201301&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYblfx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "54所 | 网通院2027年度提前批招聘暨暑期开放日活动来啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "石家庄" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a4c25117ac2e8876fdbebb777756d1d47b08026ea207edefb373de5afec5288a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/INzdy8QNywgElhwmwFSyEw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5bda5ce5878f70e760ff84626fb97a1ebe423713659c9f5410dfbc9eb371a715", + "text": "https://campus.51job.com/2026cetc54/about1.html", + "url": "https://campus.51job.com/2026cetc54/about1.html" + } + ], + "value": "https://campus.51job.com/2026cetc54/about1.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "reeApD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "易启·先锋计划 | 易思维2027届实习生提前批招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e70cb742f0e1718e4873ea2b4f1638b3622967726aba44881e46893958d1486d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cWNrX9h8aX1m7vUceOjK8A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e9ab0afb6fe294ad0fc3ba0808961663584a629f6ba41e19469f5072acce6d23", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rjtU9d", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯动科技2027届校园招聘火热开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/上海/武汉/成都/西安等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "290a1cb88b9c0f5e6c2822a32505deeae2cc1e06fd42d92b4e9d52b8bacc9d1e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3UkbHbf-UCB_GNvaC6vq5w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9d64857ba5289a4c7f435a3d2090690353c572063abd306042fbabfd40778d3c", + "text": "https://innosilicon.zhiye.com/campus/jobs", + "url": "https://innosilicon.zhiye.com/campus/jobs" + } + ], + "value": "https://innosilicon.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLxDEe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "货拉拉全球拓展管培生GMT秋招正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/香港/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b1ac28a2be93229ac37b7b580231e924ff4a28495471d4fe29008f18f1ccd665", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NMrb8tMqe1eEc-fTnTkuug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7de690bc88ed9843d0dc8bf24da6fc7dfa4f7041e7bdd6fe88b864483ea820b2", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r59vQU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "商汤科技「无限原力」人才计划全球启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳/上海/香港等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f65b33810621b252f13f83aa27a94f8ff2a54fdf6a189635e68b350b6dfa248", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Hndt9nX58BtIP_Ac6HQ3fw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "545124336a982e45a00094d382bc62bb8b2197a6581a756bf63cfd7eda71a599", + "text": "https://hr.sensetime.com/top/?keywords=&category=&location=&project=7654524986392824115&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://hr.sensetime.com/top/?keywords=&category=&location=&project=7654524986392824115&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://hr.sensetime.com/top/?keywords=&category=&location=&project=7654524986392824115&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8a32C", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "在“易”起,了不起|易动宇航2027届校园招聘提前批启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "85fcc6155d4e8d315e2c07cdf25622d15d9cc8e80755538986c7a7a2dc84d274", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zzQllc6-Mtp_7QwQBsPagg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c32588f14fbf5eaf52145360ac85ae555b016689670dd024a4c179c40aefd011", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3w801", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "27校招提前批|嵌入式软件工程师(图像识别方向)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6f8630bac79a0147cba511bb7159917d6960b77d0f8d3873dfd58f96da69be19", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IF7lKvBLXo_v_RPKfSOZUg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9adb6764748cd901652738615697dc8436bf479d660364838ba65787d963eb69", + "text": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/job/d768bd4a-a1a2-4339-8e37-704d2a687e73", + "url": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/job/d768bd4a-a1a2-4339-8e37-704d2a687e73" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/honganrobots/150155?sessionid=#/job/d768bd4a-a1a2-4339-8e37-704d2a687e73" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdYD0G", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "优衣库“UMC早鸟计划”招募启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784131200000", + "value": "2026-07-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月22日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7c4fcde9439fc34314c5cf84ffeae5452492085dd283302e75581c40a01c8b4d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IPdhREkUu2HXYTZhwzrNdA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20eea965600489ce009bfa6d05d03be3e90bcd024be18e9e6a392ccecd08ef7a", + "text": "https://uniqlo.zhiye.com/campus/detail?jobAdId=e4f28a5f-c434-46de-a73a-5db32762bee4", + "url": "https://uniqlo.zhiye.com/campus/detail?jobAdId=e4f28a5f-c434-46de-a73a-5db32762bee4" + } + ], + "value": "https://uniqlo.zhiye.com/campus/detail?jobAdId=e4f28a5f-c434-46de-a73a-5db32762bee4" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4vXyL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "502所 | 2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1784044800000", + "value": "2026-07-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月29日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "931cea7e984704e6aaee3fe7583ef66f5e1a57563818f15dc1cab764083e3edb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4k-opYMWFveeTth77M9xcg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5b7925d07ccd71310a6143146c6f0df1d4274abe3c2ade93c1895d3cb904feb1", + "text": "https://app.mokahr.com/campus-recruitment/bice/144168#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/bice/144168#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/bice/144168#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rClIXk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "强脑科技校园招聘&人才计划|脑机接口 × 具身智能,与我们共赴未来" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783958400000", + "value": "2026-07-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "12月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0519093236f2f9ae76c0bb821e4fec62d6df577dcfc99ceec4bf9c2c04481d2d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/GbIJvVp-2T-yjHvrtCgTLQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "58415caeb97557e33f117f4819eb0884b721be909b3bf03c2b556501c6e9a3e9", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhJFJK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "望子乘龙,青衿筑业|东风柳汽实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783958400000", + "value": "2026-07-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广西柳州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3c5972507cc6a8006395b7b08f7558a90ba57a7a866cedf054eec721e6775913", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rPAqY3aHJw_zd7ZyH1YYww" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "68ee6078a4afb677e5aff50915af4869ec76c434933d8184f2ad238d3acb10db", + "text": "https://xy.liepin.com/dflzqcwzcl/positions.html?area=%E8%81%94%E5%90%88%E5%8F%91%E8%B5%B7%E4%BB%AA%E5%BC%8F%E4%B8%93%E5%8C%BA&company=%E4%B8%9C%E9%A3%8E%E6%9F%B3%E5%B7%9E%E6%B1%BD%E8%BD%A6%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8", + "url": "https://xy.liepin.com/dflzqcwzcl/positions.html?area=%E8%81%94%E5%90%88%E5%8F%91%E8%B5%B7%E4%BB%AA%E5%BC%8F%E4%B8%93%E5%8C%BA&company=%E4%B8%9C%E9%A3%8E%E6%9F%B3%E5%B7%9E%E6%B1%BD%E8%BD%A6%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8" + } + ], + "value": "https://xy.liepin.com/dflzqcwzcl/positions.html?area=%E8%81%94%E5%90%88%E5%8F%91%E8%B5%B7%E4%BB%AA%E5%BC%8F%E4%B8%93%E5%8C%BA&company=%E4%B8%9C%E9%A3%8E%E6%9F%B3%E5%B7%9E%E6%B1%BD%E8%BD%A6%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNWAUB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "兴趣岛实习生计划来啦!这个夏天,来和我们一起搞事情吧~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783958400000", + "value": "2026-07-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o3l8n8" + ], + "value": [ + "智能教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e7fe494f735162f450ecf17511e2cab38b7b67a5f01e7d4ff01c1c1b0b71d64", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/92PhQ4hoWFKKqCqy5w_Ftw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4c93b2503e4b180fe23db1bcf2036d0b5d591cacd1dd5fdd540bbaf439803424", + "text": "https://xingqudao.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=", + "url": "https://xingqudao.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=" + } + ], + "value": "https://xingqudao.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxT1eX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘丨润石科技2027届秋招启航" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783958400000", + "value": "2026-07-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/南京/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "40dfa3d2a70d0fbf4e00fe91b7b45bf1547eeb0f9ef3b6c8be119b8502cf876d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/v6_W0yncUddZKDYnHISIBA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a1ef6b22b5ed3474e775d053292b63877253d7853aa1cccd52f66715b1f2af43", + "text": "https://www.run-ic.com/list/68.html", + "url": "https://www.run-ic.com/list/68.html" + } + ], + "value": "https://www.run-ic.com/list/68.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtcHOz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "圆通管培生校招 | 2027届校招即将启动 岗位抢先看" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9rLbb" + ], + "value": [ + "交通运输" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "96c5e64811161d9aae98ea7927b59cda820dc208089f61e4e24b42640d10f289", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cPg4WJidXJfaGi51lQbIqA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4a4e20e592fdf87b8706c446b1126ddccb63741bee6eda3e5eb8a9b75cc80de3", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7xbhp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "江森自控2027届楼宇自控销售实习生招聘 | 五城联动,职等你来" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/成都/郑州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "09b5d9f060d0969ad3e2b6cd461fddaae00824d06f36db9e3c2af9d4f4a139d3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/isWV5yu0F5OsNx8j2OB1LA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "240a62dc66a2a26e0b99b4b57e8e9a9f67b55f53219ea7794f4b6c6da2e54bb5", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5gcIX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "兆易创新2027校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/西安/成都/合肥/苏州/珠海/横琴/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d16271582adbd74aec9c7c8bc912946cb3fe64bdc6a29d5a59a1adea8dc434ee", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FoWwHfRQandVyS6rQYsWrA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "edf7cccc4067780cb2eaaa4fa9d254ba56f3162c922c228a3e74c231fad16617", + "text": "https://app.mokahr.com/campus-recruitment/gigadevice/92215?locale=zh-CN#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/gigadevice/92215?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/gigadevice/92215?locale=zh-CN#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9pnub", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卡尔动力2027届校招提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c9468947c3dccb99c7b98407dec93f513495dca7673ec1ecfbbc60257052d97f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4b5S4VK35UKOW_97qgkiqw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e66829c1a189864b5b66b36f7cdb5ff81886dca5e7530a8d88d26cc31098186", + "text": "https://kargobot.jobs.feishu.cn/267069", + "url": "https://kargobot.jobs.feishu.cn/267069" + } + ], + "value": "https://kargobot.jobs.feishu.cn/267069" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rS4wVH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "联发科技2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/成都/合肥/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "74bc0a6906ef7dd9726cbf7274bd1fe1aecc07def22c32697e6e721e5ea86842", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7PbNs1897a6QgmWoXYflEA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c137ecccdc94a54c966c78a4913b7f38265807b48ead0810103d74d7f3e16ddc", + "text": "https://mediatek.zhiye.com/campus/jobs", + "url": "https://mediatek.zhiye.com/campus/jobs" + } + ], + "value": "https://mediatek.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rW3Njz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南芯科技2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都/深圳/北京/西安/南京/珠海/杭州/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e0277402857e93a0a7e7bc9947b49f5d427d475a0ff06ffc7602a74b04f9637f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YuEhQAMXIodLyuav0MiwVg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "181512a012eee8578f262ea5b0841e55718ba3372620778e4f0502cd5d03c9da", + "text": "https://nanxin.zhiye.com/campus/jobs", + "url": "https://nanxin.zhiye.com/campus/jobs" + } + ], + "value": "https://nanxin.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8MGxF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯动未来 杰才汇聚 | 矽力杰2027届校园招聘扬帆启程!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/杭州/南京/西安/上海/成都/深圳/北京/武汉/合肥/青岛/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4e1cbf3fd569dab3107577dec21e40e4f35107025ab566df0e257acc60753ce2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mWitINflW-NJAjPlhagDVA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "37c6b03ef0238aa132ed3771dd56f3c76c5ff92887631c768ef5a2e01eb3b43e", + "text": "https://www.silergy.com/recruitment", + "url": "https://www.silergy.com/recruitment" + } + ], + "value": "https://www.silergy.com/recruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rynvYs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "虹软科技|2027 秋招提前批正式开启,速投!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/南京/深圳/台北/硅谷/东京/东柏林" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "afff87a2b71eef9f4cee1e9fa8948ec5d39602736ac5bcba1c08a715032356e6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/soNYJJNGMAkhUxy37vd9xg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fa61da8de30eafad4ae4d6afebec20876de80a157a3aee3737e0e93b4880b324", + "text": "https://www.arcsoft.com.cn/job/JobList.html", + "url": "https://www.arcsoft.com.cn/job/JobList.html" + } + ], + "value": "https://www.arcsoft.com.cn/job/JobList.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8YsCR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航天智能院2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "013fac2013b1344d909c8bc3d6573bd8e5680acf63a5d6644702fde801c6515b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sWP9d22w2dsRSl-rF4DCHA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "835322a7008e9e2da850723db55da78bc713077e80287030ee1ee50ee9b74ae1", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rW2dLe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国兵器工业集团第二〇二研究所2027届暑期开放日正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783872000000", + "value": "2026-07-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d1d1433d25e803d314f4427371371916e85a2695b264f0aacf76cec80aae3405", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FVLBuT8Egi_GTD2i5TrBNg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d6db63348fef2a586c28c75118fa64eae2edabd52447afe3a5b8c475863ea02f", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rc8I25", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "探索无界 智启未来|超聚变2027届校招OPEN DAY报名开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月24日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "郑州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e3139e699ace1ec6557aba0e567aeed963a0aa2c2df11bc72c46063d308bab98", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zwNCI5_4ZLT-4M0IEnPJaQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3163a75c1e8f17c9124f06756454534f69646fcc219b45d1f3163bf2cd590dd3", + "text": "https://form.xfusion.com/cn/get-information/open-day-2", + "url": "https://form.xfusion.com/cn/get-information/open-day-2" + } + ], + "value": "https://form.xfusion.com/cn/get-information/open-day-2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwjWeX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中兴微电子2027届“未来领军”招募令:寻找定义下一个芯时代的你" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "04364006374e050ff658374fbe6e5d901fabd1d8264fd63c0b371271882ba5c9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SbEMYrE20nSvHWZ36AGxjQ?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e701d50c4dcf633910a15af7fa489f27bec27ef55d4b67349e7ad5daf89ae56e", + "text": "https://app.mokahr.com/campus-recruitment/sanechips/102705?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/sanechips/102705?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/sanechips/102705?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGdtLA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "温氏股份实习生火热招募中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oi8gXm" + ], + "value": [ + "农林畜牧" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56c1273f80cea6a5db21274ee6ae2ff8b5b4d099ab7f8ed12aa015a6e1d6bc44", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qwEOCOG4-xKaMSgu6lSo9g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e6bb08904fa928e96530eb2e9352eef730bb6334453473f1b1ca963a19a9ff3e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rjOeQh", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "职等你来 | 伽利略2027全球校招 正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6c967348be9895e5254cc8ea85003d6c11222e503064e08e43d76250492bcde4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FIpt6QfCWum8QAINurY3zA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2c66d822a80260422e3b08b98acdfcb972d68bdc82c679ce663f1629f6f2111b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSPcUt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "睿励2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20c2ecad45c18a9f4fdce5d3731a27be2c3d08b566dfe9b97abfa8fd34b9858e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/n_rX4Iq3jVcmAbyVjiRxHw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2b2622a0fd0d6b0d04079d9bcbbf9c9d204b89277f7deacde8fe3c49da5d2954", + "text": "https://app.mokahr.com/campus-recruitment/ruili/43376#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/ruili/43376#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ruili/43376#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rjdFl2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【NAURA校招】北方华创2027届校招提前批|锁定你的“芯” offer" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳/合肥/武汉/苏州/厦门/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "771e1fc6935267846d822ab68c4bef191ccb54f37aab0a6cf9503c0fb8f24e97", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fbpIIY4eoRNHVPiTN920Ng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "47e4136443941869ee4098dc092a9a7cc5f3890f05becef668e38a8d468ecfa1", + "text": "https://career.naura.com/campus/jobs?memory=%7B%7D&silence=1", + "url": "https://career.naura.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "https://career.naura.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ris6tX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【活动邀请函】中国兵器工业第二〇六研究所人才开放日" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b3ec1e773ae29673131a8668e5dc6da71b42624cfcf40ff0b41252d12a2d6944", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rbDL1CENfnH0lI_kWQDWKw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "371a2513d0db52a8be25e0e7b0be8de23682d8eb77e42f627d33de0ea34db4e1", + "text": "https://xadzgc.zhiye.com/campus/jobs", + "url": "https://xadzgc.zhiye.com/campus/jobs" + } + ], + "value": "https://xadzgc.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUVnFp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 |腾盾科创2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/自贡/达州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad9f08b1ca28679d6aba530be8b264294ce40d530e138778e86c288dd101738b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eiMb79qttL-CZkf6lKXRYA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f2e04c8856768ea884f7d55738cc4ae929380c73ad73f092fb1497178e69fb7c", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfSdVe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "碧空展慧眼 青春献忠诚 | 航空工业雷达所2026年暑期开放日来啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783526400000", + "value": "2026-07-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ba34c73bb2128e916ada737c545076f98bfe01c133ed084e1668ddf1009097b0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8BAqRBp_uaTsJGHg3Z3k9w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2434774576e34c56263149b4ae1ef912b89b2bb0b14221e095591ef614efca1d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riDpQR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "直通秋招|2026 欧莱雅中国科技青年咖入营申请开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783440000000", + "value": "2026-07-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月22日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "98427c351af58befa1cb8dae028589873ee3df9915a32feb68fb3b0f0c038e49", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0YLAYyVJDSmIYroVoTfrhQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "c3eca6a3c7d77b2205aaf6cc2ee30d2d007d6de5e8e12287df3e6550d87e2468", + "text": "https://u.hrtps.com/r/dpKbWPcuw", + "url": "https://u.hrtps.com/r/dpKbWPcuw" + } + ], + "value": "https://u.hrtps.com/r/dpKbWPcuw" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHzuBG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入 Bain|秋季校招启动,社招持续中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783440000000", + "value": "2026-07-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月8日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "76950beaace022ab4d7f53b4d3cf3501339d4622598b4ce4a79dfb7ca6a6b009", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/b-_mqKRyCYPflnNIHQjVvA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "97e8e30b64a5c7eb8d9dc87c1cc02a846f1582258f16898dded4f23a8dcb3daf", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIhrZs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宝时得集团 2027 届暑期提前批实习招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783440000000", + "value": "2026-07-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26af7883b0464fa1e182bc72593a6c54bf930c0f6f2344b24d8d3d4017933f0d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/963ZfBd_oorBehgAkGSoAw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6452ad5428c21fdd3fdee10767a592ac4a8f11cb4141f36f3d97d392de6d9ed", + "text": "https://wecruit.hotjob.cn/SU64ae431b2f9d24760adab44f/mc/position/intern", + "url": "https://wecruit.hotjob.cn/SU64ae431b2f9d24760adab44f/mc/position/intern" + } + ], + "value": "https://wecruit.hotjob.cn/SU64ae431b2f9d24760adab44f/mc/position/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcwa3v", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "希奥端2027届应届生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783440000000", + "value": "2026-07-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/天津/深圳/成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f5465b92f6caec07088bd55572e2e3c45638d06b7f4fc99d51a3b2296d8ca89", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FQhy4YH6XX_BXQwNghCHiQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "779cd2ee1ed7ef4adf34a2544ff03e1877b7b234f0bdf2342a74dea1f1e6ef9e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8pj6l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阶跃 StepStar 顶尖人才计划,全球启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "14c9c8d0d75e0174d7de720a58202de466328abf86b540c9cb3297c4621226fc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AEFCx_Up_NTxigtC2XAo2A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "58f4072801095f2d17cb487844190759c6dae2c8faa06a65a9b079f7a1e38cc3", + "text": "https://app.mokahr.com/campus-recruitment/step/141903#/jobs?keyword=27%E5%B1%8AStepstar&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/step/141903#/jobs?keyword=27%E5%B1%8AStepstar&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/step/141903#/jobs?keyword=27%E5%B1%8AStepstar&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9W2pk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鲲鹏计划 | 海天集团2027届高潜专项招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波/广州/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e714ba09623d21112b17a80f7503e21d7b75935b729928d53aa9a86c6ffa96b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CeilGC0h5l9v8L8CpMn9lg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4ff17aa5ddbf7ed49abc4e1284a4c10a0f76e9b81db305e2d17b4a410a233238", + "text": "https://haitian.zhiye.com/5/detail?jobAdId=aa2088b8-00fd-46b4-8ef4-8f42f09cdfa0", + "url": "https://haitian.zhiye.com/5/detail?jobAdId=aa2088b8-00fd-46b4-8ef4-8f42f09cdfa0" + } + ], + "value": "https://haitian.zhiye.com/5/detail?jobAdId=aa2088b8-00fd-46b4-8ef4-8f42f09cdfa0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTN8Ju", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "高盛招聘 | 2027年暑期实习及全职项目校招开放申请" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "10月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20cf562bc381969bc300d88838d8e00c2ce9b0eb6e2d0ea667e2312ff3d62789", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oLX4sa9wvObqjU-ck7OTCw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a3b99e18fc926fc641d5d3d66e111a0339062999bdbb26df789ab3d724ae86d4", + "text": "https://www.goldmansachs.com/careers/students/programs-and-internships?1=gscom:program-region-careers/asia-pacific&sessionid=", + "url": "https://www.goldmansachs.com/careers/students/programs-and-internships?1=gscom:program-region-careers/asia-pacific&sessionid=" + } + ], + "value": "https://www.goldmansachs.com/careers/students/programs-and-internships?1=gscom:program-region-careers/asia-pacific&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6H6Pt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西南技术物理研究所2026年暑期开放日邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b30cef840bae18b513ffa87fbf562e806a23d6870d9b90472c92d871d0d50c50", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nyCCdFde9c5jzNCierB8YQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9e6e942b47aa23d0f7ef93550b743784cf51a276c597b80e740164924f358948", + "text": "https://norincogroupzhaopin.zhiye.com/campus/detail?jobAdId=22b88565-6944-4e13-b411-6cefe41a2bcd", + "url": "https://norincogroupzhaopin.zhiye.com/campus/detail?jobAdId=22b88565-6944-4e13-b411-6cefe41a2bcd" + } + ], + "value": "https://norincogroupzhaopin.zhiye.com/campus/detail?jobAdId=22b88565-6944-4e13-b411-6cefe41a2bcd" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rh9X6Y", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "赴烟台山海之约,践强军报国初心︱航天513所暑期实践开放周邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "烟台" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "74abb0726dae1036e340c3678d908df3b6fb22e86795113f27fd6a48c6006a9a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xvtOHSyTrdq4OIwDokpeBA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ee91deed4a341e09213f0e74c7bbb9cf9c97c24dc426e2680fbd2e5f3f33929f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rO9Zlu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电信天翼云2027届超级优才招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "11531c8b665a2c7c31a708b3a53a5e528ce9ae79fd2f8cf7c9b2d4036263cebd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/X1eqEoU33leskV_iOQ1BiA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c067e1c4fefc9249718a11b11fd771ae5e73e45d0d4976efa8ec401043cb1573", + "text": "https://wecruit.hotjob.cn/SU62b2ae672f9d24458d72f9cc/pb/index.html#/", + "url": "https://wecruit.hotjob.cn/SU62b2ae672f9d24458d72f9cc/pb/index.html#/" + } + ], + "value": "https://wecruit.hotjob.cn/SU62b2ae672f9d24458d72f9cc/pb/index.html#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7BngV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航天科技四院四十一所2026『追梦人』博士暑期实践暨2027校招直通计划重磅启幕!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月13日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7bf28d7da2c3f82e2f56cf77eb6d20c917ff1df1b9294000cbeb39e5407bcff3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/N-tO9L39k5t589c9uSfYgA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6237cde37a48087a138eff65598fe2f1d957626da7759430d13100f467147f09", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rICVnb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "501所 | 通信导航部2027暑期实践暨校招提前批全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a49f0960a9748144d249e15b32ac5789c41f6127dc339a6cae19a38016a03b5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-xFnWVuJ0CiU7rq7SDs5HQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8532793ff5f9786ed8cc90794c2a4a6564631bc0bd699b0c879606dc676052b4", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rR8nZw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【芯态度,Telink万物】泰凌微电子2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20579bbb41084cc4651b3114c7158ee6090bdfa08bbd80e3ef39669a73cbade1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2uCz4gcNamw3_mx53s2D9A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0abdcfca063a3d4f35f284e2763d954ee06c9f3a8744287c8919ebf92d078a0a", + "text": "https://telink.m.zhiye.com/#/jobs?jc=2", + "url": "https://telink.m.zhiye.com/#/jobs?jc=2" + } + ], + "value": "https://telink.m.zhiye.com/#/jobs?jc=2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJEdxI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阳光电源2027届全球校园招聘提前批启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oWzXXi" + ], + "value": [ + "电源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/上海/南京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1fd41dca5fbff7c51eaee6e66fbc7fef4ae6998b0638616038cc8a2af6905bc8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/d2IbH0oyZi4IGppXs9Y_4g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03ca6e624b31c2fbcbd81a965f6f8256a58b902e33a19db4648872f727be09bf", + "text": "https://app.mokahr.com/campus-recruitment/sungrow/94416#/", + "url": "https://app.mokahr.com/campus-recruitment/sungrow/94416#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/sungrow/94416#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvzv00", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杰华特 | “芯耀青春 聚力远航” 2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783353600000", + "value": "2026-07-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/深圳/西安/珠海/成都/南京/上海/厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "867a422112b0fb498976d570e4b43ae31363896ebaa8497bbbd1cf0fe0dc1262", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/S2rB6GhNhuJpWAeikFU2HA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0db79733e63d9d2ea64f5f469239b62e2808d9a146c7df5f7eab23a64d7a8e09", + "text": "https://joulwatt.zhiye.com/campus/jobs", + "url": "https://joulwatt.zhiye.com/campus/jobs" + } + ], + "value": "https://joulwatt.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSNkp1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "理想汽车2027届实习生招聘项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/常州/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d3af2b5268c20a91cf6461d84fbdd8508975ac013b069a4b946ae3b555f382c3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BCEFM-OOslL-gEIAIMTOLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b7b6b37486e0b9e34ddf78569b34ae65344784c602ee696cc4b7bbd0a337a85c", + "text": "https://www.lixiang.com/employ/campus/list.html?fromJob=1", + "url": "https://www.lixiang.com/employ/campus/list.html?fromJob=1" + } + ], + "value": "https://www.lixiang.com/employ/campus/list.html?fromJob=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdZlUl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "恩智浦2027校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/重庆/上海/苏州/天津等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8ee97b825d9e3e93630086b88772e82c07cccec13e4f3eb42aa56d698aa28b99", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7ljyJtrGLgtemgXQSVjYvw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "95b39612d7ac487cc86dc47520401ef68c798df2494ebfb5f2651028b2abeb59", + "text": "https://campus.51job.com/nxp/graduates.html", + "url": "https://campus.51job.com/nxp/graduates.html" + } + ], + "value": "https://campus.51job.com/nxp/graduates.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0qFD4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻光逐梦,职启未来 | ASML 2027 校园招聘火热启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e60f090010f752fb4484af8055faeb053661116723e9223d9257d87eb32abaa6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kLTuEP8jfHa0d1fcZIUIzQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b61112c21ee8665614387572fae5345b70dceaec075d9a4f54ccca1624d5f778", + "text": "https://campus.51job.com/asml2027/", + "url": "https://campus.51job.com/asml2027/" + } + ], + "value": "https://campus.51job.com/asml2027/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQEInw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航发黎明暑期开放日来啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "沈阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "44a04b64e15150c02b5bebfe7884b5d5bd39e2e2b8ea3f249d5fc17008a0eea5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/GR1-h7XzvLytTk09ypdNsA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "19c67412673c3dcca986d61ea0f7f3ed097309bccbe8e4c98669eaee15266a31", + "text": "https://www.iguopin.com/company/jobs?id=10685309840419193", + "url": "https://www.iguopin.com/company/jobs?id=10685309840419193" + } + ], + "value": "https://www.iguopin.com/company/jobs?id=10685309840419193" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnVyat", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "新和成2027届校园招聘提前批全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovYJGt" + ], + "value": [ + "生物医药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "浙江新昌/浙江上虎/天津/山东潍坊/黑龙江绥化" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35e5ac621360397e1aad358857fafd7d902e17ffa3162ea7399544341442a970", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PVk662q7fEpouZs6jNNp7g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "63b4e91df9c5156d3d4d8f07af30fae9092bb3a6d9eb15d02364142017cfb296", + "text": "https://xinhecheng1.zhiye.com/campus", + "url": "https://xinhecheng1.zhiye.com/campus" + } + ], + "value": "https://xinhecheng1.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rp5QEK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "逐梦航空,盛夏奔赴长空|航空工业设备工程2026暑期实习生招募全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4d828065b1563a850e8c2e90e2f4bcd1cb828f29cf61718ab8ca8a6dd03cf4a5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JUvlHguafNJEJC_W1h5dDw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "714271439898a9b8d4c790a6d31daefc88a00dde7c5cf2e4698320ac069e4bc3", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rH57np", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智开新域 求索航天|501所总体设计部2027届暑期实习全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cb1b168778e6adc79af5c6e1ce181b8caf6da1622d34648c1cefd2aad2f09707", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kEginFB98obh6CPHtkh-Ew" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c850e191b208949db61dbcd2702d3abea75f7d513b1ab59251a7b25e59b637c1", + "text": "https://app.mokahr.com/campus-recruitment/hangtianwuyuan/166339?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/hangtianwuyuan/166339?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/hangtianwuyuan/166339?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryTlRV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微步在线2027届校招开启啦~欢迎投递!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/苏州/杭州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03bdb8d225921af2b9b0ab93a6597c47cffccbf6e84725498461f1a198c3a8f5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ZRCh0l8XPVjiW9m_qiSt1Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9ef1db4585d483134d7c7664d8d84e078175daa12598043b3bf0face083e58e8", + "text": "https://app.mokahr.com/campus-recruitment/threatbook/39679?locale=zh-CN#/jobs?commitment%5B0%5D=%E5%85%A8%E8%81%8C&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/threatbook/39679?locale=zh-CN#/jobs?commitment%5B0%5D=%E5%85%A8%E8%81%8C&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/threatbook/39679?locale=zh-CN#/jobs?commitment%5B0%5D=%E5%85%A8%E8%81%8C&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0rEAo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "平行线教育2027届校招提前批开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odCx1H" + ], + "value": [ + "教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "05d85960715f97eb4c5157ba4d55a50fbacbd48db84ff5bff1058218796b80e6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iXvGvHLxf5jYD371emW9yA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "da90ba9730dd51d23cc160e97731fd74a4b5cf294268b8a086644959c23fad2b", + "text": "https://zzpxx.zhiye.com/jobs?activityGuid=32e0ac7b-5779-44bf-b95b-c3dd495a3db1", + "url": "https://zzpxx.zhiye.com/jobs?activityGuid=32e0ac7b-5779-44bf-b95b-c3dd495a3db1" + } + ], + "value": "https://zzpxx.zhiye.com/jobs?activityGuid=32e0ac7b-5779-44bf-b95b-c3dd495a3db1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "reC7uL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027届星火校招提前批来袭|抢先锁定秋招offer" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odCx1H" + ], + "value": [ + "教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "059b9fa93cea89e1f145e87f6fe271881ed12e0f7979fc1a576600507ab07483", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CSeK7OKHVt6voBUKvJp7mg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "56b69ce042e0b703f270d6973813fabc2b1d1ab3f96756f86198237f265c4535", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rung1r", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "执芯为光·茵赴新章|中茵微2027届校招启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "9月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/成都/苏州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cfdeb6c232b410ce147dd9a8091dc506bfc7c5c5878b3185ebb15d8cde933a2d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/I7gv6zdyB0XGQpAiNm_zQQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8d21d7f51d3889eab94ecc08d2811873709dba75417d505a80c34edaa8d50de9", + "text": "https://joinsilicon.zhiye.com/campus/jobs", + "url": "https://joinsilicon.zhiye.com/campus/jobs" + } + ], + "value": "https://joinsilicon.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAm2jf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "京东方2027届「先锋京英计划」全球校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月14日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/重庆/合肥/北京等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f4265dffc60bf8f6b85102c48652245098c47ce5c3402faf09150ecbfffc5bd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pNGA4gTMKzwLrRVsfs0HzQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0244c59eaa3f6f951779925fe6db01af57c1a0ea00ddb696cb08cd60d3f881fd", + "text": "https://campus.boe.com/custom/campus?hideMenu=1", + "url": "https://campus.boe.com/custom/campus?hideMenu=1" + } + ], + "value": "https://campus.boe.com/custom/campus?hideMenu=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rS75Xu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "@2027届同学:长飞校招正式启动,邀你共赴追光征途" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4d944ead9f3be94f276420dc0117f4c0c1bdc94bed6c4f3770d7c511a2ba6d8c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AuCmSzRbXU2qlkc-DPigkQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c4a9f9823fa0d1d1aa927fde360fe8c81f4403507e007b569d829e96e33f6fb0", + "text": "https://yofc2.zhiye.com/campus/jobs", + "url": "https://yofc2.zhiye.com/campus/jobs" + } + ], + "value": "https://yofc2.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhvYSF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国空空导弹研究院2027届毕业生暑期开放日报名开始啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月16日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "洛阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "820cce13cb72c0e56a9543ba62ae0914e6596253da294b81f28efe587fd5b0c8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TM70EKoGgkcUaUwdnWWI3A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4e8cbeb69c105b749a515eacef66f4238446dfaaff3c87928797e8fd00009206", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxqCWG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "软通动力2027届校园招聘火热进行中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "546a9984eb88c026986f54d5a51970472680d494e565078e32f9211009f1089f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yIL9nTxJSM4yUMHg1ZjHjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fbb606aa5dedc7269fac6e36922db8e20c7ea84579a8f16e358a4787ec1340f0", + "text": "https://www.itongxue.net/folder/promotion/isoftstone/", + "url": "https://www.itongxue.net/folder/promotion/isoftstone/" + } + ], + "value": "https://www.itongxue.net/folder/promotion/isoftstone/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7c8L8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拾贝投资|2026暑期实习生招聘(有留用机会)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1783180800000", + "value": "2026-07-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "781fa056f439650c7e34051971a5d092fc130b883ecefd40ceb3019525c9f43d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9dK9kuK3lOqV_q--qGdXWw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0f3d5ff6fc3e4e4ede4b532b6b407486c35f5f83614907f1d8d09b90f615397c", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rStBN9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加速物理AI!RoboSense 2027届全球校园招聘提前批启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9648650417b52afae06c8f32e5d966519dbf2780fce23d8f83053c2e6085970d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eZKjE-4QXcTyxvcuDUe2oQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "223019e6067c5e9bfc8c8b036a003ed0b62e6879ee466a589edbfe0d289663df", + "text": "https://app.mokahr.com/campus-recruitment/robosense/69887?sessionid=#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/robosense/69887?sessionid=#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/robosense/69887?sessionid=#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5VETf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "锐石创芯 2027届校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "重庆/上海/成都/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5d2ee906c8e0348a9189a2e38fae8a6a72b120676b4f57b3dc0410692988fb79", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TPNBtkUgKHKzErVaZFgWKA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5767b581da7af03a849417ae4e3dacc6bf3e4546438c473a58e46ae76c4e13a1", + "text": "https://radrocktech.jobs.feishu.cn/531403/position/list?spread=Q13728Z", + "url": "https://radrocktech.jobs.feishu.cn/531403/position/list?spread=Q13728Z" + } + ], + "value": "https://radrocktech.jobs.feishu.cn/531403/position/list?spread=Q13728Z" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZuAle", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "多益网络2027届校园招聘秋季提前批启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/武汉/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "66ba8fe70286c2c4e2b125aee695d777449976c83940d319f7859ad9fc5d075b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EFBgiZwEfmS9P6Ldvk2dXA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5e5566b0b53e29171b7d3bc4d3a4d569b65e13fd0294dd6c8595a8a1d69ba3c2", + "text": "https://xz.duoyi.com/v40/#/", + "url": "https://xz.duoyi.com/v40/#/" + } + ], + "value": "https://xz.duoyi.com/v40/#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rf7jOS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中科光电2027届校招提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "8月16日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "de5d76231ae8ae3e515c0bf729be797cdda606109445e19bd035aac8760de4ac", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BF6FErkGjf7D9_veskPkdA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b7f5dde7d8cc3745e21ceb054d99b859d2f868f8fb150070385d367418028bdd", + "text": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rj5Rj2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中物院软件中心2026年暑期实习启动丨给青春一份实践答卷!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "98e2153564f89cac95831268a0a7b8a31c6bbfea1a3b9685965b63e59377493f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/GAMLmaKrlUFT5WY1WJejUQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c423ed267ff3ff3a0b6b4c69f65de238a0264b7e839e1cee6efe02910fd8e555", + "text": "http://www.caep-scns.ac.cn/job_list_practice.php", + "url": "http://www.caep-scns.ac.cn/job_list_practice.php" + } + ], + "value": "http://www.caep-scns.ac.cn/job_list_practice.php" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCNrq3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华芯天微2027届“芯星计划”校园招聘正式启动\n" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782835200000", + "value": "2026-07-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "278b9da1525f883224496045ede4e03e0a05d1a7353c51daad1aaea88c82617b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cZ3llBGB-5cYsdUgNzd3Tw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e2a5317bd9be3986397c2fc8f72b728f02d42fc27b5a4580a7751d1a83414bf3", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rU94qg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招丨镭纳新才,目向未来,年包百万等你挑战!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "衡阳/北京/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2b17df75a631d31a71c1058ebba95e210320838238a09e0cccb7ebffc97ff6d5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-6fAb7nTtbm6EWRBaZPVSQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "50cb20e37265cc501f368fb3a84f53e41e3105378957235ed97b9c46ce8cee8b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rO7CGn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长存集团2027届提前批校招拾光手帐" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o52aEH" + ], + "value": [ + "存储芯片" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8cad0591059baedbf3a11addba034ba8909306a4db5e2956ab36d9cff4141d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CTT_8EfOtFAiWBxr39YY3g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "07850ef8024daf9f22188a2e205bd45ab5c79e614ccf4e34443483718c917fb7", + "text": "https://ymtc-campus.zhiye.com/campus/jobs?sessionid=", + "url": "https://ymtc-campus.zhiye.com/campus/jobs?sessionid=" + } + ], + "value": "https://ymtc-campus.zhiye.com/campus/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvNSss", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航天科工六院2026年暑期开放日暨2027届校招提前批招募开始啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "呼和浩特/西安/远安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e8897ede57b671d6f7ceb01f9e3deb1b97e6fe2803559ea20ac0797e2d081cec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tNH1G_LER6n7w2-DaQuGdQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d922f66a39508c1241fef148b96cde53293297a2e827c373498dab20b1dcb751", + "text": "https://casic.m.zhiye.com/joblist.html?jc=2&ky=&pi=1&ps=10&c1=&c2=3_35&c=", + "url": "https://casic.m.zhiye.com/joblist.html?jc=2&ky=&pi=1&ps=10&c1=&c2=3_35&c=" + } + ], + "value": "https://casic.m.zhiye.com/joblist.html?jc=2&ky=&pi=1&ps=10&c1=&c2=3_35&c=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7EmbN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "深圳艾欧谱特数字科技有限公司暑期实习招募啦!遇见未来,智启新程!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/昆明" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2a5b3b08111b877c1966290bf5ffabbbc911c61fbf93ebf83d81442ebca97ddc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/E-_5WSqS0R-crCpPAnShug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f2e9d6c97c22a05400c408564b1a70907ee83f45e213e48c832861aa0fa10111", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMzsC7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "秦农银行 | 2027届暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56b56b5a6036eb5fec75aba50212da9bae3e5cb71cf3277e8158a53bf0079982", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/p1Iwi7Ue9nbRWfSLHtsZbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "49675063d175f519da964ecbfeccc17f5443fafc49c7733c9bae66867d84bc96", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUYlh2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "金发科技清远基地2027届储备实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o2hZPA" + ], + "value": [ + "石油石化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广东清远" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ba38cba7049c0d59857f05d318be4cf4f2217fe460a8586292c07d9061660858", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JIANN75oE7hEV50FdItFzw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "45862703b8a95f53c82dc2655855b60fd444831145db2d5a5c1865f6321fbaa2", + "text": "https://kingfa.zhiye.com/intern/jobs", + "url": "https://kingfa.zhiye.com/intern/jobs" + } + ], + "value": "https://kingfa.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqEDJH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国网浙江省电力有限公司2026年 “浙电见习生”公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月3日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "衢州/金华/温州/台州/丽水/丹山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dbe7d33cce1c35226eebc663117c6f1695a03cccfb8c54a826ab67dea1440474", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wY0YSdZzoH9sbz9ifd92VQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6914b885ae8580b4a486b06e74b8aa7f027712b9ff4d7724925dadf0737d1b8b", + "text": "https://zhaopin.zj.sgcc.com.cn/index.html#/recruitNoticeDetail/2071544031733317633", + "url": "https://zhaopin.zj.sgcc.com.cn/index.html#/recruitNoticeDetail/2071544031733317633" + } + ], + "value": "https://zhaopin.zj.sgcc.com.cn/index.html#/recruitNoticeDetail/2071544031733317633" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhMybr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "第一创业证券2026年暑期实习全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3608c0c631d49c6cbd8ae431fd435c2bf308b57797f85784aae1c360f1aa6e54", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/j0nHi9qBatj_2euSRHARDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d66b2bca2787841b0a01c2a8e5eaca819ce753a1a428e17f54db4ae7c3936744", + "text": "https://wecruit.hotjob.cn/SU6212eaf20dcad466450cc295/pb/interns.html?projectCode=101501", + "url": "https://wecruit.hotjob.cn/SU6212eaf20dcad466450cc295/pb/interns.html?projectCode=101501" + } + ], + "value": "https://wecruit.hotjob.cn/SU6212eaf20dcad466450cc295/pb/interns.html?projectCode=101501" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0Bc6x", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科华集团2027届校园招聘提前批启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o04fQQ" + ], + "value": [ + "能源/电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/深圳/漳州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8cf27d6faf8f598f69ff9c2df42e1611ea3a6ef9cfd44a5d34bf45b9d6478592", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2eGWadogeul3DXrVLK8h1g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c815050f7aa26d11a11ce92f53b3854bbf0a4b81212ef4576908ea3bb33d31f9", + "text": "https://app.mokahr.com/campus-recruitment/kehua/92510#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/kehua/92510#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/kehua/92510#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcFQs9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘|北芯生命2027届暑期实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovYJGt" + ], + "value": [ + "生物医药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ac86a54c580139368406f1d4225553557aee2485708719b966a51f221e99513d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4S-vZ4c-xDGnXtcT0D0J9Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a7772c13de1acd75628ddcd5d1d881c98092e5aa315fca4c82e83e6c52df81ec", + "text": "https://insight-med.zhiye.com/intern/jobs", + "url": "https://insight-med.zhiye.com/intern/jobs" + } + ], + "value": "https://insight-med.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rV6Hlb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中兴通讯2027届未来领军人才招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a51fa420af633929fa126bd32ef778400ead2a39aa6b1f0f3c20c4044702ec60", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yNl6WYL2D3iuIIzrQ66xMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "930dea4d24b32ca2dbdf14124b844d6acd2e77afc8d70b2c2d08f9ae314e3105", + "text": "https://job.zte.com.cn/cn/campus-recruitment/Recruitment_positions/future.html", + "url": "https://job.zte.com.cn/cn/campus-recruitment/Recruitment_positions/future.html" + } + ], + "value": "https://job.zte.com.cn/cn/campus-recruitment/Recruitment_positions/future.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbUOBD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "穹彻智能 “Noe-Star” 2027届顶尖人才招募专项计划全球启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f4b4bcf4cf8640ba9c83926de2ec8296778e05b973feab45e5583de8658476e1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LR6BvAhbjuMPc4GtYQGkug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3ea41e310c74bd8263cbfbcbfdb0e9389a7e3d0bb0ef5dc8e48d862f892addad", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLQrhV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航天科技集团2027校招提前批正式启动|星辰英才,等你来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/成都/保定/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e064f4c8119665555fbeffe8866064f807ecef2484e746d5560d507bdffa9064", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/z3LM4t-hkE0QJj_YXBilUw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fff1f11143d9242455f2652633ec970d467e5d1937e8a483fa1d21ec868cba50", + "text": "https://www.spacetalent.com.cn/xcjh.html", + "url": "https://www.spacetalent.com.cn/xcjh.html" + } + ], + "value": "https://www.spacetalent.com.cn/xcjh.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryDLaE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "研思鉴行 新质启航—中国质检院2026年暑期青苗优才实习计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ac7a564eb0cca80459cbc683649851c2a6d86653bd2eecffcb69cccac29dbca", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EEyUWCeA1uaWCS4H_HwK-w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c56277390f31c15f62c68fe5a16d57671ac5ea579e4b01fcb7bb3e18e67bce07", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryRcIS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长飞光纤2027届秋招" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782748800000", + "value": "2026-06-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o7SvYi" + ], + "value": [ + "光纤" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5c18cf6134f1134ddccabc6719c8e6f45b0b19d9c1c368bcaa9a51a448917e81", + "text": "点击查看", + "url": "https://yofc2.zhiye.com/campus/jobs?queryId=b7fdeb54-7e77-44ae-aa31-2128dc467fd5" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b3d890c8bdea79e0f93b08c626e059a1ae4d225e331039cbf4c2ea7a37623e52", + "text": "https://yofc2.zhiye.com/campus/jobs?queryId=b7fdeb54-7e77-44ae-aa31-2128dc467fd5", + "url": "https://yofc2.zhiye.com/campus/jobs?queryId=b7fdeb54-7e77-44ae-aa31-2128dc467fd5" + } + ], + "value": "https://yofc2.zhiye.com/campus/jobs?queryId=b7fdeb54-7e77-44ae-aa31-2128dc467fd5" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rs2V9R", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杰英聚势 AI 启航| 杰创智能2027届实习生招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782316800000", + "value": "2026-06-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0c0793360c47a3379e01f58ede506b4caa86165390f4304cfd06bb9c6d6aeaf3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/q2GlzS7fIbvohil7W51_vg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3f9cbe1b03d4dc742984a77fceb1839b5bc3749c08e643f3bc2951aac758a123", + "text": "https://www.nexwise.com.cn/zp/col230/list", + "url": "https://www.nexwise.com.cn/zp/col230/list" + } + ], + "value": "https://www.nexwise.com.cn/zp/col230/list" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rA4grB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "大众中国实习岗位上新" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782316800000", + "value": "2026-06-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "40c6e81e9743c45815c41988dec5f4c4bac0aa696cfb7ca2ab80808ce0177bf1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4FtUDWLOX7zY0S-vh7zOkw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "46652743ee2868c7cd805662dd4e52f8a27013f7cd86e9aa04566846e9261aa6", + "text": "https://app.mokahr.com/campus-recruitment/vwa/142785#/", + "url": "https://app.mokahr.com/campus-recruitment/vwa/142785#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/vwa/142785#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rydA7H", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "新凯来2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782316800000", + "value": "2026-06-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/东莞/上海/北京/武汉/杭州/西安/成都/珠海/长春" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a07e873d6539b9399181482bbaf01bcac0de5020e958b4ff74b5dac1621fde9a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LCZtpuXbu6uumZmNFg7AZA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c9b075cc7f0d9a41a58c6bd1a762b2faa6c8f637fb1ba24ea01f4bf7f1bd58fa", + "text": "https://career.sicarrier.com/#/campus", + "url": "https://career.sicarrier.com/#/campus" + } + ], + "value": "https://career.sicarrier.com/#/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLnnmA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中航光电2026年暑期开放日正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782316800000", + "value": "2026-06-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "洛阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a147a8499d39bbbdaad05e47fdc6f870ed5acc4498663f593c5dd8c502cc451d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Yt-AgPtSqC9Qgxc8P3dGIg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "10931304b2171bcdda39626bfcc19738691491440519e43aecee8c240c84a90f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEAZV8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027届秋招抢跑:海大集团「鲸英计划」启动,锁定未来领袖" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782316800000", + "value": "2026-06-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o7IlCV" + ], + "value": [ + "农林" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "54e232ac936d7106435b3f31b173fffd8887ba100a654552168bdfc65b193a26", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/G0hjVFySpE1BunXupO1Kjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ae51607c91be6049cf492752cb4be58d71e5f053d798e7a0f682cdc7f22a3e06", + "text": "https://haid1.zhiye.com/campus/detail?jobAdId=b5857a4d-11bb-499c-b392-02e736c86c42", + "url": "https://haid1.zhiye.com/campus/detail?jobAdId=b5857a4d-11bb-499c-b392-02e736c86c42" + } + ], + "value": "https://haid1.zhiye.com/campus/detail?jobAdId=b5857a4d-11bb-499c-b392-02e736c86c42" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "runq5q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航空报国 梦想起航 | 航空工业建设2026年暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782230400000", + "value": "2026-06-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8026a80f2e6ea9f70019a5c76121851acb6c02799c19ed67521715cc15be43e6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hBklL2uYOLKIAqQmck6Yeg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "77af7aa9593c6ec3675442d142e0e90cff8f8b0b2cd4f88ca99495c7c46dfa6e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrCmLR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【掌趣游戏】2027届暑期训练营高燃来袭!提前锁定校招Offer!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782230400000", + "value": "2026-06-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "91cae113bc24822fe7f2610a85577ec1b6c2687f90d4f11e21bc60852704dacc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iTXavX3PRRRVszd18zK0VA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2fe1356edf1786d66fe377c16f4e2f4d712e18562a0727fa14ff7f4a14e2d455", + "text": "https://app.mokahr.com/campus-recruitment/ourpalm/43628#/jobs?&zhineng%5B0%5D=240516", + "url": "https://app.mokahr.com/campus-recruitment/ourpalm/43628#/jobs?&zhineng%5B0%5D=240516" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ourpalm/43628#/jobs?&zhineng%5B0%5D=240516" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rswoY9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "青岛农商银行2026年暑期实习生招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782230400000", + "value": "2026-06-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "28d6bf017cef67edc0fb7766340dfcf104a22ff151b7d7a8935814748ffbdce9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/N19o-egbnpnRaYRVU-8oLQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "32bb87a3f651827d6e78922eb18bdb279075abd7d665d7c474933d77cb4d4b38", + "text": "https://www.qrcb.com.cn/qrcb/rczp/#/socialRecruitment/list3", + "url": "https://www.qrcb.com.cn/qrcb/rczp/#/socialRecruitment/list3" + } + ], + "value": "https://www.qrcb.com.cn/qrcb/rczp/#/socialRecruitment/list3" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4u6tr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“芯”动未来丨航天五院供应链中心2027届“新芯”实习生招募计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782230400000", + "value": "2026-06-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52991f2241d33d87bc971a23831213aa82be5213f2b376b5029e925cf946bc71", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vRZ9KqDhD-ozT_IrDcCGxg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b11ae5a2bf7f575a6faad2b9f4813e2fb983fccf068000cc8d26311bb16d0e48", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ranitZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯程计划 | 摩尔线程实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/无锡/深圳/杭州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f2b26bb758389acaf525a1ab93318bb416d1c4bc14ecba9536bdf6359522855", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/46TPXyXvNKBPVQ8wUchxJQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "057641b730d472c86aafedde70aad36090c748602e3019d5e5cf26b4581539ea", + "text": "https://mthreads.zhiye.com/intern/jobs", + "url": "https://mthreads.zhiye.com/intern/jobs" + } + ], + "value": "https://mthreads.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRzedb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "哔哩哔哩B-UP顶尖技术人才项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4656916dbce32284ae1b7faf3d665d5efd32eff6ee26966f3142d32dddb824ef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/q1U6PDpt4m_nTdl9T65_kg?scene=1&click_id=228169298" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87a053da7aad27837736675d32b93c1bb1a684609f5257e6f25b4c714ce4f956", + "text": "https://jobs.bilibili.com/campus/positions?type=3&channel=bilibiliaccounts", + "url": "https://jobs.bilibili.com/campus/positions?type=3&channel=bilibiliaccounts" + } + ], + "value": "https://jobs.bilibili.com/campus/positions?type=3&channel=bilibiliaccounts" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWRVXw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "它石智航2027届「TARS-STAR」顶尖人才招聘计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3090ac124b56edcd1633256aa440cb75eceba30653f887a50ed1c139ddfe68f1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Fa164U5Atgslp3861-TGnQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "85c5e9fbe5d4f48acaced6cd41ae739ae40aa5632787af0d4908190441e1697c", + "text": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=", + "url": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "value": "https://tarsrobot.jobs.feishu.cn/021343/?keywords=&category=&location=&project=7654421147169179950&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVV53f", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 开立医疗2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/武汉/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6523b6a94eeadfb32f7777fbd49e2c0f5bd5bfc8112b5724654526a89cc040b3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lKwWz4ovpNc2_JDdmzeV4A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "91287de1211951e05abd282efab69e61b5ba0646fafc62ee729fbc7d2038cd9f", + "text": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039", + "url": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039" + } + ], + "value": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDpCkW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万联新势力,见证星未来|万联证券2026年暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "132bdf14b32c0fce5caf79fe70204ab10fccf83679b4aa04de9d9b757cb78af2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UotN3E5MMbbsLGoVON8J9A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d0547679d431f27a39a39cce36256bd36093e120f9b5edaa7243ebfd4f598d5c", + "text": "https://wlzq.zhiye.com/5/jobs?sessionid=", + "url": "https://wlzq.zhiye.com/5/jobs?sessionid=" + } + ], + "value": "https://wlzq.zhiye.com/5/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0Wm1f", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西安近代化学研究所2026年暑期博士夏令营开营啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3ca8e7db5c84c5c8c79224c8b92c73c13f372581d7a52bd6f0ff5abae43739fc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eSF8pWClHFloorYQ4TGRTw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b3ea15ea6430f3671fc71e75c8d8c7a6d7ede93e9ded6255cbe395eaf2dad9d5", + "text": "https://form.wjx.com/vm/hAGLxzK.aspx", + "url": "https://form.wjx.com/vm/hAGLxzK.aspx" + } + ], + "value": "https://form.wjx.com/vm/hAGLxzK.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsTl6X", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "浦发银行2026年“Call浦新星”暑期实习生计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ebf256c2f1297c1c923bf72eff9e00365f37fa7d8e638d58977a9d88781473f8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zdAQdfyGemernygqRVEz0A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "39a7be5a092ada52ae2d8bafe4e5cd5881ffb959254dc730709fc0347874a2aa", + "text": "https://job.spdb.com.cn/internJob", + "url": "https://job.spdb.com.cn/internJob" + } + ], + "value": "https://job.spdb.com.cn/internJob" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUNjSu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "江苏交控2026年暑期实习生招聘公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京等浙江省内城市" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a5aca7d32400fdf301ca97d07a6dc79cc0ecaac035a83013769e13d8cd4f0bf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cxn7xj1h-xRyWOmTO5L16Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "afc5df663acb013d8731693a6752316ca78fe6649c94e63a670d2f52202d0902", + "text": "https://jchctalent.jchc.cn/SU6a31225f1d4c30777aea4745/pb/interns.html", + "url": "https://jchctalent.jchc.cn/SU6a31225f1d4c30777aea4745/pb/interns.html" + } + ], + "value": "https://jchctalent.jchc.cn/SU6a31225f1d4c30777aea4745/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rilpm7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华福证券研究所2027届暑期实习生开始招募啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782144000000", + "value": "2026-06-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "beb37f57ac65f9f762ecb8dcbd467c4d21acc3c4791df42508ac1fd2581386be", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mENbseKhBOUrj5tls-ezXg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "78f77409f23d8b5e7c77e66d88bb7a39f3d2d3b8402446a4c7708b39fe593271", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcprYP", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "重庆银行2027届暑期实习生招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月28日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "重庆/成都/贵阳/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ebff67757962fe073345bcac0ceb45e981c1d77b4c798e429122a0a3ff3ff2ec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ILzoMYpkeGaoFg2EaYdvBg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0111c049e3204d8b66b4801c6ee6fe052252fc8ef04b4064c47e203c760d9cb3", + "text": "https://xiaoyuan.zhaopin.com/company/KA0200108118P90000004000?refcode=4019&srccode=401901&preactionid=c6653227-15af-4a8d-82de-50c7e078ffc2", + "url": "https://xiaoyuan.zhaopin.com/company/KA0200108118P90000004000?refcode=4019&srccode=401901&preactionid=c6653227-15af-4a8d-82de-50c7e078ffc2" + } + ], + "value": "https://xiaoyuan.zhaopin.com/company/KA0200108118P90000004000?refcode=4019&srccode=401901&preactionid=c6653227-15af-4a8d-82de-50c7e078ffc2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcVuBw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中粮集团2026届夏季校园招聘、2027届暑期实习生招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "95c44921958563f064be907d726057275721211a38b2bb743f1b77b4f30a56fc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/siz4uszHNGCdZzq13F3o5w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5c4f0181d561c855d4cddd0bacbd7a6eb5ccde0a5af58e50db18518c71f6383c", + "text": "https://campus.51job.com/cofco/about4.html#T", + "url": "https://campus.51job.com/cofco/about4.html#T" + } + ], + "value": "https://campus.51job.com/cofco/about4.html#T" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkIbeG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航发商发2026年暑期实习生招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "21956e4a964dc52a058dd64aeaf7c13b327c7d9c4bf9f2bfca45c77f04adcba1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Uc5jn7kge_YpYstkNoni0w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "969d73522a5f5f8e9ec6cc6d44f3a445862a468efce6630b2ed9eee5dc9b631a", + "text": "https://young.yingjiesheng.com/xyzlogin?ctmid=f8ef6598-84a0-4b69-abc1-3e45808f076d&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3Df8ef6598-84a0-4b69-abc1-3e45808f076d%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r", + "url": "https://young.yingjiesheng.com/xyzlogin?ctmid=f8ef6598-84a0-4b69-abc1-3e45808f076d&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3Df8ef6598-84a0-4b69-abc1-3e45808f076d%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "value": "https://young.yingjiesheng.com/xyzlogin?ctmid=f8ef6598-84a0-4b69-abc1-3e45808f076d&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3Df8ef6598-84a0-4b69-abc1-3e45808f076d%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKKJEK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中冶南方2026年暑期实习生招聘启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e9aaf787e782b5d5a0ca1d03c249d77bbfd3d3eb749ef93d890b8ebcf830e5cf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BBI2CPyVYDVhHKeFM_Qwzw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f130631ca5ad61c0e47cf2724b84b97f5cf11211382a5b173bddeffc376b71c0", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDxZVO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "从科曼走向世界!国际营销中心2027届实习生校园招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f117641c5b2a2cae470439e3e279a61fb17258ee036308b1ff9ce15d7ec2b1f6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Wrl92JWCozm8i9YAZJrlwA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b98d74208e107c798430ad5506d56711dcda7da66aa9ac63813833bf1cd178ca", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhlbQt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广州市规划院 | GZPI 2026朝YOUNG计划实习生招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c293627db2b943c0d37d34341edee25e6987de4c9a8f3ce0d13eeb34b2d2dea4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/P4JO6_jKnfrjiWzoHPaftQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1d90e17acd5c24c67ca35706f05b4d318366f8bb7920e74be3e2db1ddbe226cb", + "text": "https://wecruit.hotjob.cn/SU682e7838e9604a2008060e8e/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU682e7838e9604a2008060e8e/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU682e7838e9604a2008060e8e/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsGNtg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥克斯2027届技术精英招募令" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1782057600000", + "value": "2026-06-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b79f7232970f32deb7ceaa246f69fd881ea3ea1acf9c525a66128dc836e0293c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/m0Xa9MKWgNeZ1tgOC7A3ig" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9abe5d7da14cf5bfd4c2971f4c2130ad6ae4964bacb63b2b59577fc83f7c7ae2", + "text": "https://auxgroup.zhiye.com/jobs?activityGuid=ec15262c-1036-4f13-818e-300b71404a63", + "url": "https://auxgroup.zhiye.com/jobs?activityGuid=ec15262c-1036-4f13-818e-300b71404a63" + } + ], + "value": "https://auxgroup.zhiye.com/jobs?activityGuid=ec15262c-1036-4f13-818e-300b71404a63" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFjYXW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "红星美凯龙 | 2027届龙潮生计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781884800000", + "value": "2026-06-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ca79a1a668159786d0bcfa4bc5ce0270d72337c8459c1b53df6b017dcd561136", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/izm-fhLgB2dBlULgG6dshw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "466e4705c5c82ea529e86e2fbf1fa75ed80a1728057a6fc7f6e858ab4e7e94dc", + "text": "https://job.mmall.com/InternshipRecruitment", + "url": "https://job.mmall.com/InternshipRecruitment" + } + ], + "value": "https://job.mmall.com/InternshipRecruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0FTlB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "方太集团2027届暑期提前批实习招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781798400000", + "value": "2026-06-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e2c0d5ba2776d5c25b69433bafe570c906e33c59cc6599bc9756ca1edf1e6ef7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qpZSEujF8RdvtQlhsjxoOA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a77924ede15a4ce92660bd95bbc2e3ae95794facd771feefe20e2c414e1deeae", + "text": "https://fotile.zhiye.com/intern?sessionid=", + "url": "https://fotile.zhiye.com/intern?sessionid=" + } + ], + "value": "https://fotile.zhiye.com/intern?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rE5gBW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【代塔校园招聘】代塔供应链 2027 届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781798400000", + "value": "2026-06-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9rLbb" + ], + "value": [ + "交通运输" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/金华/义乌" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d89a824353557a7f8b5d0dcecbf6a19e2de3116d4fb881501a0f32988ecb35c6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oiuQlCDxIGovilgzjDlIqQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a9fd1b350ae7c3d764bee04f2e48449725ed0b33f2e45d7d8f64c767246dd46a", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvMAuS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "心有山海,敢为先!中建八局二公司2027届校园暑期实习招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781798400000", + "value": "2026-06-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c9adc630a68c83e6046d37e065e613eefb22c0928125abf5ba20d6730238128a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WWgJtHUq2Z-CcAb2qnNp_g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c2638464dc2559354926a7c7de674a3fc63684d9257332e6e1dcbb55391b8eaf", + "text": "https://himile.zhiye.com/4/jobs", + "url": "https://himile.zhiye.com/4/jobs" + } + ], + "value": "https://himile.zhiye.com/4/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rM9RD9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "豪迈2027届校招提前批【先锋计划】正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781798400000", + "value": "2026-06-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "潍坊/日照/青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "76141f8459bec1a6112494b2fcae7b4272d4144e0221ed16b5e7cfa04a22c051", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/H_4EcBPvKVnChxidPNPOog" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a1c74a1a772c533a4302e5660a12e71824fa7bc9c245ae35965e9d2faaf7a22", + "text": "https://himile.zhiye.com/4/jobs", + "url": "https://himile.zhiye.com/4/jobs" + } + ], + "value": "https://himile.zhiye.com/4/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvP4xO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中铁六院2027届暑期实习生招募及高校毕业生招聘全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781798400000", + "value": "2026-06-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津/北京/西安/广州/合肥/全国其它" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a4bb4176660385e2a537b3b262c7914978cdd22c48ba708be8e87572698ef948", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xxWGlrPtdBVTkhz7Jm6Cow" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6a3c66775c6bc3617fba3037cf63b8486b41be038f026e4e2635b96d339fc2be", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rESiDF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电科第十四研究所2027届暑期开放日暨硕士推免生预选拔邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c64087376932c2d8ebbfa7639f2d667210b76bbcf1320ab2334c9d38812866e2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lqZMq0oPNHeqasWwZY5Lgw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1e9311dc306126c718bb04192d663ed5fd0f86831befc5ee277608151a8781dd", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2C0Lk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国投证券2027年“扬帆实习生”招聘计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "76dded3495e01359f4d5e490be4fc625b7b98a573ba1f48ad092755edd8afd09", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OOPYubR1PQ-H3koIMRu6cA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "432971ff673a1197757103792f4fab37ce0abe7aa0b5d3312587d6bfc4143f55", + "text": "https://wecruit.hotjob.cn/SU625d4a0b2f9d24287db127c8/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU625d4a0b2f9d24287db127c8/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU625d4a0b2f9d24287db127c8/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNGigw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国大地保险2026“启航计划”实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a27e9b617b55bfa6310ab64324004ebf0f187f0a879d92e1153219dd428cab2b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eHco92x8EOggs9sUTiPFAw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "853009efe5fbf744118c190fc06bfa86d1eee54b3dba8ae53d03bf840fd113f0", + "text": "https://webapp.zhaopin.com/2025/hd/zgddc1103ZL82493/internship/index.html?mapBoolean=true&orgDepartmentIds=10124973", + "url": "https://webapp.zhaopin.com/2025/hd/zgddc1103ZL82493/internship/index.html?mapBoolean=true&orgDepartmentIds=10124973" + } + ], + "value": "https://webapp.zhaopin.com/2025/hd/zgddc1103ZL82493/internship/index.html?mapBoolean=true&orgDepartmentIds=10124973" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsMGBC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【乐读】27届提前批招聘正式启动!快人一步,锁定Offer!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odCx1H" + ], + "value": [ + "教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "681ae8e88815e53e7ba3b79b16c573170b6c21a4ebf7990aba0190e9d7e5ecc6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/J2M6ogmIbLB23GhH0BhwCQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "86abcee1df48e91601002ee988ca468826e6995be4d8f919c4ea7a3ca7a8fc6a", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rV9JUy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年南方电网公司未来工程师训练营正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月25日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "615e1e6eb196c187c831f69da87ca9d57200f19784fd300ed9c9053443fa8e6d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tkMSHiKAj5CYDI3xPZCM_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0aafefc27966fe55410d4ff75707867082e08b69282b33b76e9b4c82795dacfa", + "text": "https://v.wjx.cn/vm/Qz1vBnz.aspx", + "url": "https://v.wjx.cn/vm/Qz1vBnz.aspx" + } + ], + "value": "https://v.wjx.cn/vm/Qz1vBnz.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtJlZr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "牧原提前批招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "onWknA" + ], + "value": [ + "生猪销售" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "河南南阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1b9b82742eb1bb2209f22d8f7ebaee5482925cfb4a2be03376dc154502470d27", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BKMC3SHRH65x48d6_CumaA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a5f6965e6222feaa254976d41446285a3b42a0eca3d4e6bcb5e685668b893d17", + "text": "https://app.mokahr.com/campus-recruitment/muyuan/74358#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/muyuan/74358#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/muyuan/74358#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "reAoGm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "人才招聘|2027届暑期精英训练营招募开启——这个夏天,来上海电气提前锁定秋招offer!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781712000000", + "value": "2026-06-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f12aebcbcd252c1befce8091ec1729e853b70fc2777dc3108e66d67afeefc793", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wKttLoGxZOWIA5Cr5vYfaA?scene=1&click_id=150912192" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e0caabb623e607005a5bd5a11d6cf87111132e0154430373b013b93e7d7becab", + "text": "https://sec.hotjob.cn/SU60de8350bef57c519874bd36/pb/posDetail.html?postId=6a30ecd03d5b657f38c89a26&postType=overseas", + "url": "https://sec.hotjob.cn/SU60de8350bef57c519874bd36/pb/posDetail.html?postId=6a30ecd03d5b657f38c89a26&postType=overseas" + } + ], + "value": "https://sec.hotjob.cn/SU60de8350bef57c519874bd36/pb/posDetail.html?postId=6a30ecd03d5b657f38c89a26&postType=overseas" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ri5PzF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 龙蟠科技2027届全球校招提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781625600000", + "value": "2026-06-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oWxw3I" + ], + "value": [ + "材料" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7ce2ce68b6d93d23dda1a6bebbdcde4309c766edbfe8fea4c29b9a15ad4c47b7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wdA3reFkAkCV3uuXWy0H1Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c6ccdcf3b8f816ad2f6d8f7bb54fb26c00adc6d46e1e81b2297abd953acd6d73", + "text": "https://lopal.zhiye.com/jobs?activityGuid=4feba390-c41b-4101-b4f7-e9a588c64efd", + "url": "https://lopal.zhiye.com/jobs?activityGuid=4feba390-c41b-4101-b4f7-e9a588c64efd" + } + ], + "value": "https://lopal.zhiye.com/jobs?activityGuid=4feba390-c41b-4101-b4f7-e9a588c64efd" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1hKDz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电能成套设备有限公司2026年暑期实习生招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781625600000", + "value": "2026-06-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bddd13406227a5cfbeb732fd36d5f70ca908fc7ecded9fce43f7f23a595b4e7e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Kt6mLy3q2Jk8H4S_UOQNZA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5dfb7dc4e553a12310592a6fb719950f1099a040137b71e71a6657e8715d959f", + "text": "https://www.iguopin.com/job/list?keyword=%E4%B8%AD%E5%9B%BD%E7%94%B5%E8%83%BD%E6%88%90%E5%A5%97%E8%AE%BE%E5%A4%87%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8", + "url": "https://www.iguopin.com/job/list?keyword=%E4%B8%AD%E5%9B%BD%E7%94%B5%E8%83%BD%E6%88%90%E5%A5%97%E8%AE%BE%E5%A4%87%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8" + } + ], + "value": "https://www.iguopin.com/job/list?keyword=%E4%B8%AD%E5%9B%BD%E7%94%B5%E8%83%BD%E6%88%90%E5%A5%97%E8%AE%BE%E5%A4%87%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKXbkp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北京国望光学科技有限公司27届校园招聘启动啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781625600000", + "value": "2026-06-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "537c4d2ddb72c738a00e133f877080fdae96b34f85f7827cd508d8895c6d6c19", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/P7v0alwzLWnwD041R-Ipow" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d9b47b0ad25afd6d0c4237491298157df00bcd4791c9cc470091dca270ae8420", + "text": "https://wecruit.hotjob.cn/SU68392ea2ed91a2307e2a97a1/mc/position/campus", + "url": "https://wecruit.hotjob.cn/SU68392ea2ed91a2307e2a97a1/mc/position/campus" + } + ], + "value": "https://wecruit.hotjob.cn/SU68392ea2ed91a2307e2a97a1/mc/position/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwfLNx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电科 “未来十所人”2026年暑期开放日邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781625600000", + "value": "2026-06-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月3日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d748b2310cce099edc23ac9108de4d0ff26fda1cf14003f7e7714287cc41f2f5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/X8k3QDNrYpu831zBPVCuSA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "52286ea308c8ad0aa255e9ba5e3e8654c400d48ddc9cb281df44fe9d17b72c1b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYRgZw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西安分院(504所)2026年“航天行”暑期实践活动邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "33b5256c2887f4535c6c6b26104c423c503c9cfddb7085aa0a4a3eceea6e3baa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sEsXCrjHRZM7-Y5a7xzsfQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "92785c955950f71b38626510342cbce8f92c60aec4dd8e69efe48eec60b43cda", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQmheT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【招聘】中电锦江2027届提前批校园招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "727983e09ea1898b73bbdb2c43c7d1b2aab3794b12b20620f3eb114d98ae6c47", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Vf_rAneDi62eISDVjnijkw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "68fef72e1083116d8a6c323f634670f5335ca61277b916ed3bf9d135bd919314", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1NzSc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027届“启明星计划”实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "75ec94558c720fc566e18da1063b3f6bad9206f039581eb696afaec0144a02de", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uq6ZLhtpFNyim08q612TQA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dc966f74358b6d64e99160866d49a78e2ed6e023a3fb9ba680ca2b842b00cdb1", + "text": "https://app.mokahr.com/campus-recruitment/hbpower/95447?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/hbpower/95447?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/hbpower/95447?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rB2Mo0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期实习|中信证券浙江分公司2026年暑期实习招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "浙江多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3bf3ad78dacf9b58946e23b152828adf61229e5c95c0dac7e65138f7b41d5231", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Wu5Ua2io5PfPmeHzoDRddQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "731c75d9beaf589c4e6a27ce307ce93fd64be3220658722e00d6643332b0320c", + "text": "https://careers.citics.com/", + "url": "https://careers.citics.com/" + } + ], + "value": "https://careers.citics.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtkBhH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "是为科技2027应届生招聘已开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/上海/常州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ce59e8f52a0112b284a90ece5a7d8218a3b1d96b29dced47d8831d96a0c628b2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OB_FDFcVt2LteSslt8w53g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "37a28f9e192aca90ebf2f1f1431a2b41f3c62d87427c078bc411e1d8e52f3939", + "text": "https://56rfo.fanqier.cn/f/ud7jtfap", + "url": "https://56rfo.fanqier.cn/f/ud7jtfap" + } + ], + "value": "https://56rfo.fanqier.cn/f/ud7jtfap" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpuLai", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "无锡市规划设计研究院实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27863c3c967b2725811a4a3b517d37e7fa7a327a281aaaf9a0712ea648949a9c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8NuV3mxlrx78uWzyltJM_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "bdb4c8dc4f1e14fef5de703e7164a0c367c588d05e1328ff3e078dcaefe1be98", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGOPPp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科达科技 2027届实习生招聘 | 同学请注意:你的实习体验卡已到账,点击激活" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73eae07efccbe8c365759e2880cdaee00abfe2ca8bc08a2dd7ab4d1d99087a47", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9djVMHxRBg9HVMRhSXJayQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ecae3cd344c7699059734c558ed27059aa9f43bb2fd6c0692a381f4a4cf48753", + "text": "https://kedacom.zhiye.com/Intern", + "url": "https://kedacom.zhiye.com/Intern" + } + ], + "value": "https://kedacom.zhiye.com/Intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRre45", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Babycare启航者实习生计划来啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyr0YZ" + ], + "value": [ + "零售快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "85b9d735694ee105a2bf085f875f05ecff8fe1da7ee923e1a3bbdfc362c4486c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gplQFHKKlXUKNyLYK23X-A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b7b46e23600d2750e0c7b7c1568ea3733e684b6f46b8cb5f8b8e9b27f39a81d7", + "text": "https://babycare.zhiye.com/intern/jobs", + "url": "https://babycare.zhiye.com/intern/jobs" + } + ], + "value": "https://babycare.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5O1Us", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习招聘 | 戈尔德2026研发暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "温州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20ced885b0e936a5c8cf120cac444263cb5f15cf2398e41e892847bbb537ed22", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9VStapkuUvxj8MPSztlSJQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2a416396c814bbe8075562dec2334c48234b79e8811b6227abcf24bc40e56833", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rm7fw4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿科玛 2026 暑期实习计划进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/广州/常熟/泰兴" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "928e6680f83ec3344865e163247fa2d290dbd6b381546c12da49df4c3fcae1ef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9Ie7cB-NFMValzlv0_9nAQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "caa2dbd29c32b1c7e9dd187a0d7868e309eccf87225c406548d745db54369c84", + "text": "https://arkema.73cn.cn/arkemajob/mobile/login/toSubscribe.do", + "url": "https://arkema.73cn.cn/arkemajob/mobile/login/toSubscribe.do" + } + ], + "value": "https://arkema.73cn.cn/arkemajob/mobile/login/toSubscribe.do" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4yiR2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "五矿证券2027届“矿新星”暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/北京/上海/杭州/成都/济南/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a2305b4814aefe9805edb4ec30d3d243bd8d78cb61a0671ebccb7436e9ed671", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LFmfy0ClFgPWcexRaeHoXA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cb16921f6037e9499429f741150a7b0e7e2e425c4612e7401ff79185a897d9af", + "text": "https://wecruit.hotjob.cn/SU63044b9ebef57c3179e6f7b7/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU63044b9ebef57c3179e6f7b7/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU63044b9ebef57c3179e6f7b7/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rc8o5J", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上海宇量昇2027届校园招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9e13b72c4703a2a65d5e5346ecfd7518d89e32195e630372f650811b63fdf8ee", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DnsN8K3oI2Xl5p_Lhj590A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b1281a7d149dc8c44ae587557c6078d36f4ebba06be7558c01a2754b31764166", + "text": "https://wecruit.hotjob.cn/SU63847447bef57c649c3505b5/mc/position/campus", + "url": "https://wecruit.hotjob.cn/SU63847447bef57c649c3505b5/mc/position/campus" + } + ], + "value": "https://wecruit.hotjob.cn/SU63847447bef57c649c3505b5/mc/position/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlYT6i", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 游族网络全球校招启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "30bc4e88d4bb023c34c94ea17b7b97bacd0b8ee2ec6a4e090e5a3dfcb89930ff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/frovjpGTxw00M5mpeAN4VQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9b8e59f6bc69aba9b78fd728d869156b018c8e184f3625b2cbf35ae072b9ff7f", + "text": "https://campus.yoozoo.com/jobs", + "url": "https://campus.yoozoo.com/jobs" + } + ], + "value": "https://campus.yoozoo.com/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riHcHl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量化对冲基金DTL丨2026秋季实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c3259d449b5882f5cf03d95d6c834341319ee58eae08aaa9c4ba6a2fbf2247e7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/q0Yy74sEk3u4Ur3CbpAZuQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b177c577b80dacbee993f8795d9f7b942c2984811eecf0070b15ef5d60f4d9a0", + "text": "https://www.dytechlab.com/careers/", + "url": "https://www.dytechlab.com/careers/" + } + ], + "value": "https://www.dytechlab.com/careers/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUv1Yq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "福龙马集团2026年暑期实习生招募计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "龙岩" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "08502d8b3402d392c891f8ad37f1778720236c762e8b6090c57d2fad30373d4f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/l8N_56d7gkU8vDJQ9YMWPQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d9c73dab8099ecb258794605988c6a5195b7c724b2a8f0a3c232c6e6bb378fa0", + "text": "https://app.mokahr.com/campus-recruitment/fjlm/128157#/", + "url": "https://app.mokahr.com/campus-recruitment/fjlm/128157#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/fjlm/128157#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDhGGB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "柳工机械2026年暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "柳州/常州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "15dc3a469feb68a6d487d5a88e0f00f9ede391807bf00823f83f29ef9cd12fad", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AmGbloVBDjoe3HZ7ymRIVw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ed533eeb5afd649d41e1c374a5bd490416d0b7724078fd2e5c5f1685bede5b3d", + "text": "https://wecruit.hotjob.cn/SU6132e87abef57c3b637dcb71/pb/school.html?projectCode=201201&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU6132e87abef57c3b637dcb71/pb/school.html?projectCode=201201&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU6132e87abef57c3b637dcb71/pb/school.html?projectCode=201201&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "remnZk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "青春当燃 筑梦未来 | 中庚基金实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5e145d12803648508388e61a67f9b758c73c93d385a6081cd0d7f03dad37fd79", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hAK7RFjsdBnTBZBWd8M3nA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a81e051e7496c931baba1c43f85862a59b65907dcae99f3717a418df64db27a6", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWgxpH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杭州联合银行2026“燃梦计划”实习生招聘正式启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0081e97055af2bc7f3acf0d441ece23f51c00b1c844c85ee01454f14efbb7a50", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ICO2nM7GOVBv-HTkkH238A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2083e9eb4b092513e95545696a21960ec4a3e94e5d12126e5bc6bad67f55f0b0", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxSypB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上汽安吉物流2026暑期实习生持续招聘中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a7062f9e429842db55eeff5c82060b5d9aa5edd473e5b14fddd89730300073c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DnnA4gAz9tIGdz_ZGW6igQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f05340d6fd8c9cca908b6e4d1d6c933dc07c1120fc43497d6401ed63ee3abb38", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWI424", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电信全球招募 | TeleAI Top Talent 2027 人才计划启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781539200000", + "value": "2026-06-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e35ee6f4ab44db15b1549389f8327b75603b9a8bdad7237a7b8178f0f62bbe0f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IIK0IUVMBugNo1PcHu4F5g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c2f28b04d50d87d33461384d35ef7046e8f2836d478739e76d9570e1b882ad86", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSgdQM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "MOVA校招 | 2027届全球校招正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "11月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e8c3d1e1809625518919487bff3b631463a2ec1a39b99741853628373b5c22f5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mPJWt1MuoUOaduFKtVRIzg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3a3ce78e2508152b3f4ad8709abb641265a84bbe006d2423426e030a1e6e03c8", + "text": "https://mova.zhiye.com/campus/jobs?sessionid=", + "url": "https://mova.zhiye.com/campus/jobs?sessionid=" + } + ], + "value": "https://mova.zhiye.com/campus/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0Xmhl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "筑梦经纬•智绘未来|中铁设计2027届校园招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/济南/郑州/太原" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0578cc288819ba988b285d3bb4a6a491ea6d0361dad684aa6751ebbca602e431", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AYkr0nHEyVkcatHBrLl8Ng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a16748af1770ee8408cc1aa20d89ff2ba85f4e7bd8e0b00000d860db416547a5", + "text": "https://zhr.crec.cn/zhaopin/#/webLogin?pkQrCode=459&pkCompany=12400000&companyName=%E4%B8%AD%E9%93%81%E5%B7%A5%E7%A8%8B%E8%AE%BE%E8%AE%A1%E5%92%A8%E8%AF%A2%E9%9B%86%E5%9B%A2%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8&pkOrg=12400000", + "url": "https://zhr.crec.cn/zhaopin/#/webLogin?pkQrCode=459&pkCompany=12400000&companyName=%E4%B8%AD%E9%93%81%E5%B7%A5%E7%A8%8B%E8%AE%BE%E8%AE%A1%E5%92%A8%E8%AF%A2%E9%9B%86%E5%9B%A2%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8&pkOrg=12400000" + } + ], + "value": "https://zhr.crec.cn/zhaopin/#/webLogin?pkQrCode=459&pkCompany=12400000&companyName=%E4%B8%AD%E9%93%81%E5%B7%A5%E7%A8%8B%E8%AE%BE%E8%AE%A1%E5%92%A8%E8%AF%A2%E9%9B%86%E5%9B%A2%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8&pkOrg=12400000" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPex85", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广州银行“同行计划”2026年暑期实习生招收正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "eaaf27583d62c21f2f6bc15e4aba70276a2d535ce616844c97b79a5b25509b3e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SMvyzu0R381bgvbkM5_6qQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "21d6e39c3b5281ff0a1e14acba29931292b9eaf252ffbee1fb66683156cb30c0", + "text": "https://wecruit.hotjob.cn/SU65323a7d8ac1ca5869a66c80/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU65323a7d8ac1ca5869a66c80/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU65323a7d8ac1ca5869a66c80/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rw4PTz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杰瑞集团2027届秋季校园招聘提前批来啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/天津/烟台/上海/深圳/天水/青岛/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "70ad1514c712f726e69050f0329cdab6697ceda5e1da153ef8afdcc55bc41082", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tTFOHtZJQoZv-h0ToiCfaA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d713fa4967e2525f09d403f771b34c26f127f2fefd5f69f82312e963185d0171", + "text": "https://jereh.zhiye.com/campus", + "url": "https://jereh.zhiye.com/campus" + } + ], + "value": "https://jereh.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLZZOl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "循光聚“新”· 铂力特2027 OPENDAY报名开启,等你赴约!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月19日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "de6f4a39369f8f890ea71a95b72678860fe0621da2c738d11897ea6aee41a482", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/U5szidBAqLvrlgBKJX0t-g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3f33f157d53877fbb56402c355ca63f1a3c4d13e83406ed2b2884ab288f21c83", + "text": "https://v.wjx.cn/vm/wGo0J4q.aspx", + "url": "https://v.wjx.cn/vm/wGo0J4q.aspx" + } + ], + "value": "https://v.wjx.cn/vm/wGo0J4q.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcIl1C", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航发动控所2026年暑期开放日邀请函\n" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781452800000", + "value": "2026-06-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d13d980a10ee5dc653449d9127c5ae7b18f0451c57277c895c7348e30627cc78", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1Pe8EQGNIQk-HGtEbYgC2A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b69b5bd9e955ceffc30820d606d5c2d5331262dfc827513443bf3e09472e89e8", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLS8ts", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中汽中心2027届提前批校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5cb423a30be198a53a21e07758bc403a6af9dabe648dc108ad7d66d052e25f3b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6gFAYRnHtyiGKJqZkMSTqA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 401 + }, + "key": "6a5b376887c273baea117ddddf1f62c1da211b659689e8a965f44b2321aeb4e1", + "text": "https://dhr.catarc.ac.cn/RedseaPlatform/zhaopin/zpChannelQrCode/campus_recruit/officeWebsite.mob?jumpPageId=detail&detailRequestId=ae803084-a249-4f69-9591-08270a0ec82a&configId=campus_recruit&recruitWay=4", + "url": "https://dhr.catarc.ac.cn/RedseaPlatform/zhaopin/zpChannelQrCode/campus_recruit/officeWebsite.mob?jumpPageId=detail&detailRequestId=ae803084-a249-4f69-9591-08270a0ec82a&configId=campus_recruit&recruitWay=4" + } + ], + "value": "https://dhr.catarc.ac.cn/RedseaPlatform/zhaopin/zpChannelQrCode/campus_recruit/officeWebsite.mob?jumpPageId=detail&detailRequestId=ae803084-a249-4f69-9591-08270a0ec82a&configId=campus_recruit&recruitWay=4" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3Y3hX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "正式启航!象屿股份2027届「屿航员」实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b2ecd3aa934a438a0153f34c5b5a547bdc600a27b862faa5687b52ab950e224d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pYBaWKQ1y80tw50tkrphKQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "acc4eeda8ee47d923e8f8c76fe7290790426a5f848d53d34562bd419aad2e5c8", + "text": "https://xiangyu.zhiye.com/intern/jobs", + "url": "https://xiangyu.zhiye.com/intern/jobs" + } + ], + "value": "https://xiangyu.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rb3PpC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中信证券2026年分支机构暑期实习招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bb0d08dfb27dc882985ff3aceac8cd5748800d9308c5b91c894f08ba037946d9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1RzmeH1bBrr0xPSknfVTDg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4f9635df5682d7824ad96e8bab9624fba07c35aff65af0f1adae2add4cfaeb7f", + "text": "https://careers.citics.com/branch/interns", + "url": "https://careers.citics.com/branch/interns" + } + ], + "value": "https://careers.citics.com/branch/interns" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqOjeU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国天楹2026-2027年度校园招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ofLWXl" + ], + "value": [ + "节能环保" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c5aba08d617f8423e3f89880f658955ca8a76a7fe6a96977c2f9dfc8ea99b915", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/so7zsBb_A0Zy_Qo0VluIIQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "eab06672b41c2dfd8626324db1b3818f5554546358adcccc35cb9387a6d2cdec", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVKfCS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习职位 | 华硕2027届实习已开放,欢迎关注与投递!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "54c905dc6090dbe76c863ab04ca65aa8044e4d9569e35fb3b625b5d2b0cfbe9a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pxrTwE4QROfMg1jeWftVVg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b689d4eaf91981cdc678828d6bfb93d4f78a26b1480305aac36bb339b3098b90", + "text": "https://asustek.zhiye.com/intern/jobs", + "url": "https://asustek.zhiye.com/intern/jobs" + } + ], + "value": "https://asustek.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDyr7b", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国平安2026顶尖AI人才校招/实习生专项 | NOVA超新星计划全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e6fb732813ccc43a37efd5a35174d6be4f9551eba8a1de562ed2ea9b01c8aa71", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OGTRehNcDZgKaNosQ-aIvw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "970bfbb806b2396c6ba9ecc1fa2f0702b5d449ebbd0910d920c34156d8bcd8b1", + "text": "https://campus.pingan.com/", + "url": "https://campus.pingan.com/" + } + ], + "value": "https://campus.pingan.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rX5U32", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "职场体验 | 麦米电气2026夏令营报名正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oDi2VD" + ], + "value": [ + "夏令营" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d9290c1a74e3199681a6bd2cb922b976db80b920495b70b4121af3399d09d99a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6arX4YatBzmAMe_7ExzcqA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a96c11d12bf9b05a2c62b59cb75f1e320d66ca5669eca29a71fc9089800a5d0b", + "text": "https://wecruit.hotjob.cn/SU628dc1272f9d243f296ed241/mc/detail?postId=426901&recruitType=intern&distance=undefined", + "url": "https://wecruit.hotjob.cn/SU628dc1272f9d243f296ed241/mc/detail?postId=426901&recruitType=intern&distance=undefined" + } + ], + "value": "https://wecruit.hotjob.cn/SU628dc1272f9d243f296ed241/mc/detail?postId=426901&recruitType=intern&distance=undefined" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0niL8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国联通2026暑期实习生计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c1f399c574d873f2c1a24358b4a5adf26166a573cc434b997e3ba39d55dc3e29", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lnIyOXo514Mj70XtEv5GIg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8efce045920ce49a0b97d6e68cd7b332c7c24b7eb7aaa4e6e905a14da73ddb2c", + "text": "https://zglt.zhaopin.com/sxsjobs/index.html", + "url": "https://zglt.zhaopin.com/sxsjobs/index.html" + } + ], + "value": "https://zglt.zhaopin.com/sxsjobs/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLkWq1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科技报国站|中国科学院光电技术研究所2027届提前批招聘公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781280000000", + "value": "2026-06-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7fc41c6d920ef40cdbd1d0bdff3c606e096d115ec7aeda37ea259338f66758c6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ZlSb1jOeyY6ld1NbQwbiZg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2bd7afb016c9c64252e89d54cf10aabf415dc8b19201ff7d25e9ce89767b9fc2", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgNxEx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "精进电动,智驭未来 | 2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/正定/菏泽" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "45b4fa88844136cfd9ea4345ab9219b7ee862c87aa016c24a7d642702fab071d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ixbn4WXqkjKj75m98ukvHA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1e8a153ba75caeceff4a8f24533cf013612131c2f95e470d1bbfd5beef258e86", + "text": "https://wecruit.hotjob.cn/SU66d7f4aa6202cc2d4991438b/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU66d7f4aa6202cc2d4991438b/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU66d7f4aa6202cc2d4991438b/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXvRJK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中联基金2026年暑期实习计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0febbe26d2ff08962074c104fc4d8396238ded77ef0b78cd75cb205890bd01c4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/n_Sq6qToWTnD_1GT_ut1EA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "991a80cb08e813ca140d3a65652477fe45794add7fabc3304b6f08ac0c8da57b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzjebs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中华财险2027届暑期实习招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月1日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京等全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "982e15c8cac348249a3b39ba7024e95584ec011a849cbf4721a07c4d4aa3e6a7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gtmPCRloNOjyDKyaynVgQw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ba872f3be9784e6f25473086a6c3c22efcdb814360b2e848ff937d90e77b5619", + "text": "https://ciczp.zhiye.com/custom/sxstqp?hideMenu=1", + "url": "https://ciczp.zhiye.com/custom/sxstqp?hideMenu=1" + } + ], + "value": "https://ciczp.zhiye.com/custom/sxstqp?hideMenu=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEaCJK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上海济达交通2026年暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9rLbb" + ], + "value": [ + "交通运输" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8dcf023aff6716d6088e94b7857da5c71c51887be9b276271897193e6fb37b3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/L3_fXObrW9cIHKdam45-Cw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "38ccf63ac1e4fa961e4630dfc8377254913d18043d7aa9faf42888734f50bc00", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rP5FCX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广东省建筑设计研究院集团股份有限公司2026年度暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ae355d809a7d3d0e1f86e15a33e8317e9015471377db1b00a22d6990a6b4f901", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/s9Tp8tRK2jUrxFwVk7ROoQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b276dd4819a8563aa91772bb878d654a295a20b338ded3a8130e8fa29d3a3cc3", + "text": "https://gdadri.zhiye.com/intern", + "url": "https://gdadri.zhiye.com/intern" + } + ], + "value": "https://gdadri.zhiye.com/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rss8Fr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026台达电力电子研发暑期体验营报名通道正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/杭州/武汉/重庆" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a97df3090ea6d93ea43d3e431f0a5cf9f0e2491514ab9e2715791e5603a58281", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1tLpOzqS9UJmZzRPmUbRTg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2cb0c40573574608a0bf435193c6b5863453cef70378e0062af357eb28221324", + "text": "https://v.wjx.cn/vm/tKW356q.aspx", + "url": "https://v.wjx.cn/vm/tKW356q.aspx" + } + ], + "value": "https://v.wjx.cn/vm/tKW356q.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVgY5F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "豪迈2027届深蓝训练营招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781193600000", + "value": "2026-06-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "山东潍坊" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35b493ff3bd3ef5f59109d982ea5eb91edcb77ffba517b58b3bc505502744479", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cPyOgowRWDs-yPbLL4HJjg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2f51b527d41739eea004880e5e14ab88a096db00b2b555c73a046d4ff9646b3e", + "text": "https://himile.zhiye.com/7/jobs?queryId=2ad28445-8e2a-4394-8ae7-d95b62dd2003", + "url": "https://himile.zhiye.com/7/jobs?queryId=2ad28445-8e2a-4394-8ae7-d95b62dd2003" + } + ], + "value": "https://himile.zhiye.com/7/jobs?queryId=2ad28445-8e2a-4394-8ae7-d95b62dd2003" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVy8Xv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航空无线电电子研究所2027届提前批校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b0750f829f6ab7821ca5a044c325d36c1a70fa193f3eec58261ef457e81c6ba6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XxwmAe5eJnlhYqP-O-YzWg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b67117cf1456c5108c152797265e485b21251f7dadd18d6f9ea07b467aeb0ed1", + "text": "https://intelligents.zhiye.com/campus/jobs", + "url": "https://intelligents.zhiye.com/campus/jobs" + } + ], + "value": "https://intelligents.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r72J5W", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习|蔚来公司营销暑期实习生招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8f7f3b6ab976fecd94fa315b8c13ec027f606dafc3f262d40ba5b5183a03e77", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JwSZANUk2PB-pCqiQ5uDuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "ee252f8e842db523a3f93244d3ede8142dd1b8c13b2725e004f09047977ae417", + "text": "https://nio.jobs.feishu.cn/s/UGhr3CnMEi4", + "url": "https://nio.jobs.feishu.cn/s/UGhr3CnMEi4" + } + ], + "value": "https://nio.jobs.feishu.cn/s/UGhr3CnMEi4" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpa6Y0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小红书27届「Product Engineer 产品工程师」暑期实习项目火热招募中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/武汉/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65ebdb20a3fd3ee14b802ea0885482506a1a82dd55e552df44a8cd338236938c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SVqLBFbLkWWmZgiFQE9-Xg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4d042041dad65fd20c9d12ecffbbe0ca3d3e7f158551b26e85c7a294f28bc0c0", + "text": "https://job.xiaohongshu.com/campus/position?campusRecruitTypes=term_intern&themeCode=0EQLWFLLPKOH", + "url": "https://job.xiaohongshu.com/campus/position?campusRecruitTypes=term_intern&themeCode=0EQLWFLLPKOH" + } + ], + "value": "https://job.xiaohongshu.com/campus/position?campusRecruitTypes=term_intern&themeCode=0EQLWFLLPKOH" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rX2qAc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "平方和投资2026暑期招聘进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "21e4e099862df9d57a2574829c96403780fc2f8464d9f9864153fe4a14667f9d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EF3veaNrOuSmG0u3i5fALw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b4ad40cb103538048133f969da60901ade8ce829f8ff63266483ef91e21b6a0b", + "text": "https://app.mokahr.com/campus-recruitment/alpha2fund/151124?locale=zh-CN#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%85%A8%E8%81%8C", + "url": "https://app.mokahr.com/campus-recruitment/alpha2fund/151124?locale=zh-CN#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%85%A8%E8%81%8C" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/alpha2fund/151124?locale=zh-CN#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%85%A8%E8%81%8C" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rixQfJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "InV·EST | 大众汽车金融服务(中国)2026实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4ddc633e37455af2dc0a7ba26ce20d1a9dbb87885f092de7b495a2fbaf641874", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gdEPEYKiASkK48kp_kFbAQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "386c59a72b26a2b43ee3f6f2fc9c1d4e8c66ce640909c84dc2e4d06861e11c79", + "text": "https://www.duomian.com/project/13806486/", + "url": "https://www.duomian.com/project/13806486/" + } + ], + "value": "https://www.duomian.com/project/13806486/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwhs9m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 中科芯2027届暑期开放日活动报名!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1869779f1c4e341514bb54ed98db3d21ab5424da3a567c173904877ba2569d96", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IUUuEaNpa0chZJg7S8ZecA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fea631c852d0c0ecd0428a88f61e527614c3981887f3f4d546904c2bb51166ab", + "text": "https://cksic.zhiye.com/campus/detail?jobAdId=9a745f36-59a8-4b0b-b885-1875e99af88a", + "url": "https://cksic.zhiye.com/campus/detail?jobAdId=9a745f36-59a8-4b0b-b885-1875e99af88a" + } + ], + "value": "https://cksic.zhiye.com/campus/detail?jobAdId=9a745f36-59a8-4b0b-b885-1875e99af88a" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUZScJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "水晶光电2026暑期实习招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "浙江台州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c5fbd55f76c8857ff2dfbafdbee4e9c75a0b8ca3a076d82c2a6cc769a4cc90d0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qEYcl0hBaxJuKUuvs2DrLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "01d621af3265fec19615fd96c04d46e8522bb1c16f7b10297362850e0c00e21d", + "text": "https://crystal-optech1.zhiye.com/intern/jobs", + "url": "https://crystal-optech1.zhiye.com/intern/jobs" + } + ], + "value": "https://crystal-optech1.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQ6XQ2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国科学院云南天文台2026年大学生暑期实习(理论与计算太阳物理方向)招生通知" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月25日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "云南昆明" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "035fac86f0bda85e3c47a9d0a1c2b46cee48378806ffd4c4a8553fe84dea4fed", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Od0CLN_IdIHFcFBl2_sLzQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "85b87f9252c41ba212fe321ef2b1ebde00343ddb66ef866c566f409e5bc1984a", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6rU4R", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小满摘星计划丨度小满AI顶尖人才实习招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "822ad0ea80bfa45280615b99ab2b146c25cb8c8f1b4b6a3eb648ee34ab1b46c5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/w2s2zwNMG_d5DbWn2OGe2w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27ef1903f86b49130758ea3879869b5779b5bae2f028356ea9a010ac3b95539c", + "text": "https://duxiaoman.jobs.feishu.cn/051736/position/7649303782597691694/detail", + "url": "https://duxiaoman.jobs.feishu.cn/051736/position/7649303782597691694/detail" + } + ], + "value": "https://duxiaoman.jobs.feishu.cn/051736/position/7649303782597691694/detail" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9mYYj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广纳贤才,铁一院2027年招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安/兰州/乌鲁木齐/全国其它" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3008c14437c5c668a189f50c210837d52a34c80b2453c7a79d36835a9754ac12", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6yofLhR9gSI-tngrbG9GRA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e7104cd0528cad992c9a7b44d81d498b1cb3665c04cc64fd7ae5f9c0179d580c", + "text": "https://hr.fsdi.com.cn:8081/RedseaPlatform/zhaopin/zpChannelQrCode/f659ddc0-b912-410d-80ee-d4533da554bd/officeWebsite.mob", + "url": "https://hr.fsdi.com.cn:8081/RedseaPlatform/zhaopin/zpChannelQrCode/f659ddc0-b912-410d-80ee-d4533da554bd/officeWebsite.mob" + } + ], + "value": "https://hr.fsdi.com.cn:8081/RedseaPlatform/zhaopin/zpChannelQrCode/f659ddc0-b912-410d-80ee-d4533da554bd/officeWebsite.mob" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRctA1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航空工业计量所2026暑期实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3c9bfcefefa3df5ad1c5d3df21344e4ce1b11cbbee121c8225b203fc1776c126", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mmbTGk1RWEXOiLAVaYIf-g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7d598e3eba658a1045c034232c39049cc5a7d7b8cb1baa5ce0955ef2fb9b3b85", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpZ5hH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "网易智邮2027届精英实习生火热招募中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "11c4dc046cf654d08e8467c212de2874424b57a9ab9b3b65b2341123d406099d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8r_-MtEdz32CUYEw8E3UMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f78fbf60de3c96eda7d37d07306b8e3f071147b497c1bd0deec6a84236bb744", + "text": "https://campus.163.com/app/job/position?id=76", + "url": "https://campus.163.com/app/job/position?id=76" + } + ], + "value": "https://campus.163.com/app/job/position?id=76" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riLIor", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "民泰银行2027届“民星计划”秋招提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7d19f0ca0720c13872fd3d53861d61f8137a79fa5553e2bc5ef7d0fcc97f404b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FTULF-q9Xd-ZTI4zwHWm8A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d59eea30d57a5fa25170af40e130f50ce71117d3114de9b3fc84d49d3995d985", + "text": "https://mintai.zhiye.com/campus/jobs", + "url": "https://mintai.zhiye.com/campus/jobs" + } + ], + "value": "https://mintai.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9GHg6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海克斯康(深圳)2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "25e6fef248d6623ff0f74a166b823fe5736a5044bb31b78255226f5e2f007f42", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8MERCbOyND6CxqsQF4H6Ww" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d17e6fd7b4de6a0b6d11c4a602d90b788f4b857e3667a5aa82314ab58ee07eef", + "text": "https://hexagonhms.hotjob.cn/?sessionid=", + "url": "https://hexagonhms.hotjob.cn/?sessionid=" + } + ], + "value": "https://hexagonhms.hotjob.cn/?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzxX93", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国商飞公司2026年“启航”实习生计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "966301f82f7b2aea04785b298e2ac53fc0cd50e0458247b1e833a01155824552", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kVVb86WoiEiDUkMHk-4idA?poc_token=HJTKKmqjv6l30_r-A7nmGivN5Ejnx-QTMoD7DNJD" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6a677d0ce339c935b59b90b9a9e6cb57f37f4b01d895afde4434e01d08c8e9e4", + "text": "https://zhaopin.comac.cc/zp/ct/out/position", + "url": "https://zhaopin.comac.cc/zp/ct/out/position" + } + ], + "value": "https://zhaopin.comac.cc/zp/ct/out/position" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtA8cw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "撑起世界 承启未来 | 汉德车桥2027届“未来星”暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d1dcd8a7e82b5e1d6f1289d8f77243989583b8256c000f9e2a23f567debb18ff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6lnuu7j3RQ6IQRSsmL9y-Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73957d3673023cb11b8d64e811df683de5f60a911abf1355c2c9f44f20818bcf", + "text": "https://hdcq.zhiye.com/campus/detail/detail?jobAdId=b7c4f2b0-2bd8-45b0-a51d-bca383271c4d", + "url": "https://hdcq.zhiye.com/campus/detail/detail?jobAdId=b7c4f2b0-2bd8-45b0-a51d-bca383271c4d" + } + ], + "value": "https://hdcq.zhiye.com/campus/detail/detail?jobAdId=b7c4f2b0-2bd8-45b0-a51d-bca383271c4d" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4wBev", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "铁四院2027年人才招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/全国其他" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "04abb0c72d884fa457d2a69b536d5b09b0ad54cc690150f2414df1819d7e44f5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lsAOikuMkhpM7JQCfx3VKg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1f97c9ee3acdb1d4962ef4ad81c040778f2255d1ed39f52539b96e0df9523611", + "text": "https://campus.51job.com/tsy2027/school-pos.html", + "url": "https://campus.51job.com/tsy2027/school-pos.html" + } + ], + "value": "https://campus.51job.com/tsy2027/school-pos.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMkvJ7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "重磅!中国铁设2027届应届硕士毕业生实习招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月22日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津/全国其他" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6c1ed465a0eb2a0f72a4528f9445ff86bff685095519dfc0b0155d1c3ea6d4a1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fSiDv_mS02d7PgZr2frCbQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 301 + }, + "key": "c20850e436407e9bc7363068fe1a2bfbd41f491539ea3af11c398e1f067c9d26", + "text": "https://www.crdc.com:8080/#/notice/Diccgb9FhbLARwyGfOjGvAg", + "url": "https://www.crdc.com:8080/#/notice/Diccgb9FhbLARwyGfOjGvAg" + } + ], + "value": "https://www.crdc.com:8080/#/notice/Diccgb9FhbLARwyGfOjGvAg" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcMwZs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "工大卫星27届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "哈尔滨/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "85a862190fdd526d8c161c27fc8e420c54c29463be5bb84c9c0362f2a81b0f5c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KWBu6Bo_l1bAHRpwEfc_Nw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d69689828d49cb965cba2ffdc1f2b3809df88f8b139384bb448d93f8ccf2c4a5", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYO7mF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星图测控2027年校园招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7dee6fd1e6cc40681bb565de48b9d226776581dbba7b8f8480b76b57393356ab", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BIN95z6M_WQzbgy_esb05A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "38e7fb0402b0ac4d1a11dc185a8f309ed93a2f75b725de6e281901d780ade986", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7MKui", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 迈瑞医疗2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1781107200000", + "value": "2026-06-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/北京/武汉/南京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e9bf3e954c9967fa6eab91b05407849a152ae0a6c556261da84d14941a4cd19f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/z_illYHrLZnXJkAy8Y-wyw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "22e2ef4280db72e9d20469c2e6cd7fd466685279d57b1a092ca98b484fde3f3c", + "text": "https://career.mindray.com/8/jobs", + "url": "https://career.mindray.com/8/jobs" + } + ], + "value": "https://career.mindray.com/8/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFftcd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "烽火通信2026年暑期开放日开启招募!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oUWeSl" + ], + "value": [ + "开放日" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6dad1a49dc79d049fcd16841fdbca9a52f67c468bc81e1fe7174af1689dbc008", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/chdkea5VFyyp5i1D-Ob0nw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e7e8d536f85a41abf415428057bef530ab4c29bedbf9a2b883957230fd7e8c2", + "text": "https://v.wjx.cn/vm/OtJsHsZ.aspx", + "url": "https://v.wjx.cn/vm/OtJsHsZ.aspx" + } + ], + "value": "https://v.wjx.cn/vm/OtJsHsZ.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvA7Fi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南京银行2027届暑期实习生暨“Blue π计划”金融科技校招提前批" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月14日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f4d8997df4c80e6068a0ba1a3aa57000460edf03646e13cf76f9cee08917b8ee", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zDEnhcyr1tnCReIj_HzrMQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9a0c27ea5ecd088128b32cb524c33decc23bb7c1fd7eb60625d23d8dafd08294", + "text": "https://job.njcb.com.cn/#/trainee", + "url": "https://job.njcb.com.cn/#/trainee" + } + ], + "value": "https://job.njcb.com.cn/#/trainee" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDYmJy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北京金控集团2026年暑期实习生招聘公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "858c4b8271bd85bb4c02dc1df473b8e9039e47a00de8f89fea3d671a3f763dad", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/z8FC6ghl80_Pmx1g_72bHg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "739825cb14e6cc5455856a4c8c7ec28111e71f956ea7c4418feecda4f23c80ac", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPw2xS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "大道投资2026暑期实习正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "569ff4143d9a19442104dc98bb703fcac0e1bf49b26da304f6c1bdd5ba030bcd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/h5KzEEamYtpbzI_Ur61P9g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "48090e58c4df2aa0c239d9b5802fbb8285225911e50736f8e55850ec2a037d3f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNeMKE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国贸股份2027届暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "28d77ec89ced0eb21f2a340dbbbf11d794f07761881e8300bfff584232171bf9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_9ywiUvS-gCx_wCeKhrD5g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6156a2a15e736dc51822ef5ec830f607ab40fbe6fe389bca77019315a5124ac4", + "text": "https://itg.zhiye.com/gmkgsxslb?k=&c=&p=1^14,3^24&d=&PageIndex=1&key=gmgf&job=intern", + "url": "https://itg.zhiye.com/gmkgsxslb?k=&c=&p=1^14,3^24&d=&PageIndex=1&key=gmgf&job=intern" + } + ], + "value": "https://itg.zhiye.com/gmkgsxslb?k=&c=&p=1^14,3^24&d=&PageIndex=1&key=gmgf&job=intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTciV6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西安微电子技术研究所提前批开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780416000000", + "value": "2026-06-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4f274ef4df32fb0534e64f72bc0965af2c2cc79f45193ffc5ca49fdb0e9aa821", + "text": "点击查看", + "url": "https://cascxianmti.zhiye.com/campus/jobs" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8aa2b91fabb12427cf31adea192471b571d0594915cfb313e49bc5b47ddebf5", + "text": "https://cascxianmti.zhiye.com/campus/jobs", + "url": "https://cascxianmti.zhiye.com/campus/jobs" + } + ], + "value": "https://cascxianmti.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsyQsS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园招聘|长鑫存储2027校招提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/北京/上海/西安/日本" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6daa609506464451b41fdaa74a240cfcd0db6db8cabef589031295fb6b525c2e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qQV6TvPFyDoLZth-Z_rjqw?poc_token=HCWKHWqjg-3bwAc9c7lvit3m6bnH7MluXYZq1pek" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "01fd4324487596c5cef12f9898de2569f656c793a348452bb5beaede3dcb8900", + "text": "https://cxmt.zhiye.com/campus/jobs", + "url": "https://cxmt.zhiye.com/campus/jobs" + } + ], + "value": "https://cxmt.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9Gljj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "各业务线实习岗位全面开放,宁波天使2026年度暑期实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e4eaac7b39cd774df2435b3d1024e598786cce655d83b7c6f72c6ec14c2d693c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dM6ln6eXSavrBdNZd-FiYA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3415f1f6daef3046af795f40dc4d6c866af50f0bce6d25a3f149775cc46f243c", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrdClu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "诺纳生物|2026 AI 实习生计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "79e17962f584414b8062a855392e220a74d8cf7ca9f4898ac7fefcc0f614f1c5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tO9CnqW1_8I9hw0vpga_VQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f2cc03b95dd9d76b275b583d0b2c2289aa01c2f1f6d755055403a27442fa8785", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvTqNR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "人才招聘|上海电气集团2026年暑期实习生招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d336bc78e179a2a51d17b4aee57411b8dab3a05e6dd9d9bee8516dbbb5161cb8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/X82sNDalA6Fd8j7upDOoOQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "206916539f84baf7e7125065508a2d7f0e860a084c4e50c6b4792e67d555b8ac", + "text": "https://sec.hotjob.cn/", + "url": "https://sec.hotjob.cn/" + } + ], + "value": "https://sec.hotjob.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtNfcR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "均胜2027届暑期实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波/大连/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "82a2309b262b94e42f70d4dc9a63d5210ce4db1f5d1a99e5cfcbafdff288f531", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hi6xg6fTjpl6eRn1X7x4Vg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "eb859a24d192856905d9e6aaf3e822fcac7d6165816678ef872539a4e7ce16aa", + "text": "https://app.mokahr.com/campus-recruitment/joyson/94311?sharePageId=4594512#/jobs?department%5B0%5D=2071467&department%5B1%5D=2074655&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/joyson/94311?sharePageId=4594512#/jobs?department%5B0%5D=2071467&department%5B1%5D=2074655&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/joyson/94311?sharePageId=4594512#/jobs?department%5B0%5D=2071467&department%5B1%5D=2074655&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3NIS9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中航技进出口有限责任公司2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月24日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e3f297390b61c1618f1bd915d2b3f0f1e76e5eff5fdb3405ebb20d50db77015d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Y6L6XVYvVrEayrHq4YCDgA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "204a8f46b5c74f36547f33bf594a7d9a5e763a9afb9b7d4f37c598cbda0f353d", + "text": "https://catic.zhiye.com/intern/jobs", + "url": "https://catic.zhiye.com/intern/jobs" + } + ], + "value": "https://catic.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rABr8Y", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上证所信息网络有限公司2026年实习生招收启事" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c1049a181c297acf06278cca4f92cd6fbe11e451c820fa0adba9187b6c3ef077", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nPXh2PvfpytK2XS9X7CRjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b262c93b0d33f63328b947326b7b1ebbc6dcf0441050becc5a7814d466ce6406", + "text": "https://campus.51job.com/sseinfo2026s/internPost.html#content", + "url": "https://campus.51job.com/sseinfo2026s/internPost.html#content" + } + ], + "value": "https://campus.51job.com/sseinfo2026s/internPost.html#content" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdhnli", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南方有光 未来有数 | 南网数字集团2027届暑期实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f67a075b28b0de382088112eeeb96145f5f0305763e673d63b0ade2d8aa8dc6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wlKyGTsyJEw-sKT83vV6sg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1bbd1e48659693cbb023f3e2564aeca23c8616400ba7ab58613b3d45de51262c", + "text": "https://v.wjx.cn/vm/rXpUX8N.aspx", + "url": "https://v.wjx.cn/vm/rXpUX8N.aspx" + } + ], + "value": "https://v.wjx.cn/vm/rXpUX8N.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r83jVB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【国企直聘】广电运通集团实习生招募!!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1780243200000", + "value": "2026-06-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7992fd53b6936112c9c05acc06e7101cf4218f08d72c4d0f61c2f85b0fc8ace9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Xc3VoG-uAlV7IIySt_LX8A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4793cb2c805e62128c48bbd012f0415be0013343dc49cceb4bef67e2ba4e1ca5", + "text": "https://app.mokahr.com/campus-recruitment/grgbanking/39448?sessionid=#/jobs?zhineng%5B0%5D=150841&keyword=&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/grgbanking/39448?sessionid=#/jobs?zhineng%5B0%5D=150841&keyword=&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/grgbanking/39448?sessionid=#/jobs?zhineng%5B0%5D=150841&keyword=&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raHhUo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻找最闪耀的你!启辰科技2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa6Z1q" + ], + "value": [ + "教育" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "735fa0fbf5ff9af557ebbf38dcb277532a10e9faca1968f3ecf969afc6568e9d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qQ-iLbK0nqFt1-pNa5mXIA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7630e48c785e643402c4e7290efef83888d03beb6c3e8ae0e39257efc8621d92", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7JqOI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宁银消金2027届暑期实习生招募计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月28日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ff018b6460f5daf9b1c9f8c593b387b111f806218a13630855d833bb27e6aa13", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/N_e4gVHFFB9McahBRLpq2w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "500fd80c531646ff12f4425e84db6ee906032f33c1689dd13b8eccaf0f6374a1", + "text": "https://xjzhaopin.nbcb.com.cn/#/internship-recruitment", + "url": "https://xjzhaopin.nbcb.com.cn/#/internship-recruitment" + } + ], + "value": "https://xjzhaopin.nbcb.com.cn/#/internship-recruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTqEiX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“礼遇英才,职启华章”兴华基金管理有限公司校园招聘开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛/南京/济南/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f48c315c305b40973e634dd202062f9b072834c1f5a4cbb2e3c4067908b455b4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UhbdqMEdid3bNus_vjIJYQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "29da3e801f93b41599bf95ca53e7daa460f4e37160c1b152086a7eaf8a0bb0e8", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJnGfn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "盛夏专暑 呼窖来习 | 泸州老窖股份有限公司2026暑期实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e17e1b0d936da40378bc3a90e1c133a17666063247bfa8217e19979c8c4c85d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Q3eW47Ur9j_iZa9zuM7CRQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65d29db11fe8b0bcf7d15785638f6084028f860f381f341ca96018eb48df9757", + "text": "https://job.lzlj.com/intern/jobs?sessionid=", + "url": "https://job.lzlj.com/intern/jobs?sessionid=" + } + ], + "value": "https://job.lzlj.com/intern/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLxv1Q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "保融科技2027实习生校园招聘启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "24a94efc63c9c3282252e4b46ce2ebc487c9d6c4fb19a5d993cb65ab14e2fc9b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g7P2U6FjwMW5ptF2ILk-uw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "105daa649e875e75906ee4ee6bba1b1e14e89c15099f72e6d21607c24e5b9f5b", + "text": "https://campus.fingard.com/campus_apply/baorong/25901/?sessionid=#/page/%E6%A0%A1%E6%8B%9B%E8%81%8C%E4%BD%8D", + "url": "https://campus.fingard.com/campus_apply/baorong/25901/?sessionid=#/page/%E6%A0%A1%E6%8B%9B%E8%81%8C%E4%BD%8D" + } + ], + "value": "https://campus.fingard.com/campus_apply/baorong/25901/?sessionid=#/page/%E6%A0%A1%E6%8B%9B%E8%81%8C%E4%BD%8D" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6FwV1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华硕电脑2027届AI暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/广州/北京/重庆/西安/乌鲁木齐" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c02a95c84b763c5d39e51d909b9daa2f413627ca434f301afefd519045be3152", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FxZvQE_a6zNc4BPCOlv5SA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd499b1df17fd53ef9c7bea44745921722ff6cc77426f8e639b131bae0b04f1f", + "text": "https://asus.zhiye.com/Intern", + "url": "https://asus.zhiye.com/Intern" + } + ], + "value": "https://asus.zhiye.com/Intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCuzFX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "建发房产 2026 年「建习生」暑期实习计划启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e9bafa03a661fadcd729ed72a1c592ea450a71b4c68a46869ee5c90fd30cc0ba", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dQCJsGdvnl2_fXY22KOmmg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cb9cbd6fd24c7bcc06ec5e04dcb68bd53c898fa44c05da82ab215513d6d957a6", + "text": "http://chinacdc.zhiye.com/fcjxs2024", + "url": "http://chinacdc.zhiye.com/fcjxs2024" + } + ], + "value": "http://chinacdc.zhiye.com/fcjxs2024" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwdmRE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电建四川院2026暑期实习生招聘,正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "14baf2fab0ef450c72b86a11b5a247303e3995792f1187a376dca6e806b7692c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/b6mKMYG4m3Ba3TmhvVWGLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a32cddbe501b32d3cb027d01b5819085448f6fe4816174107150d926897156a1", + "text": "https://sedc2026.zhaopin.com/xingc/index.html", + "url": "https://sedc2026.zhaopin.com/xingc/index.html" + } + ], + "value": "https://sedc2026.zhaopin.com/xingc/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3qQoV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "康尼机电2027届实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779897600000", + "value": "2026-05-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "53a3987e724133f0bd67c1324c8d1a320e318b8206a5ff51a704ea9267b39296", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hMe27ZkY9G5G0xitLDfyqw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "769e666065889a0c6dd61f4664a099d1aea662ead3ec3403441396275410c6c8", + "text": "https://kangni.zhiye.com/intern/jobs", + "url": "https://kangni.zhiye.com/intern/jobs" + } + ], + "value": "https://kangni.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsjF4w", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "雅迪集团2027届校招实习生招聘!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779724800000", + "value": "2026-05-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "896768cc8e899add106102167060dfafbf78f7ecc17daff6884022aba0986b2c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eQKQt2hJ0YTnNyZjvRveLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52d4c6d90aa490323a7077ddb21539414d6b270c9e77f541734c43b8c205f477", + "text": "https://app.mokahr.com/social-recruitment/yadea/144891?locale=zh-CN#/jobs", + "url": "https://app.mokahr.com/social-recruitment/yadea/144891?locale=zh-CN#/jobs" + } + ], + "value": "https://app.mokahr.com/social-recruitment/yadea/144891?locale=zh-CN#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcqt1a", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑实开挂!舍弗勒2026“舍习生”暑期实习计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779724800000", + "value": "2026-05-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/长沙/芜湖/天津/平湖/银川" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3a29e9fbe57ccd9117c7f5d4c64831e30d5bb61171d0a2cefe8e3b1115fb31bf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3NXl-7qHz9A2ncApjb4EHQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e9b88f80351a41ab10a4d4ee8c446ca8a5db68be0c151ad8798382274b2ab9cc", + "text": "https://schaeffler.tupu360.com/position/list?type=TECHNOLOGYRUITMENT&lang=zh_CN&sessionid=", + "url": "https://schaeffler.tupu360.com/position/list?type=TECHNOLOGYRUITMENT&lang=zh_CN&sessionid=" + } + ], + "value": "https://schaeffler.tupu360.com/position/list?type=TECHNOLOGYRUITMENT&lang=zh_CN&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLqfCC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "东风日产造型中心2026实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779724800000", + "value": "2026-05-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "38e132307eb2d1ab3fc5e20db33abe289d1193e2fde85c0ae570a057a2a3cb8f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EjMaqZGRCdXA0GDm-vlzjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6593447c7968fa38cc1d4c315465a414a50bea83f254690b038e1072a0493e4f", + "text": "https://dongfengnissan1.zhiye.com/intern/jobs?sessionid=", + "url": "https://dongfengnissan1.zhiye.com/intern/jobs?sessionid=" + } + ], + "value": "https://dongfengnissan1.zhiye.com/intern/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbUEoy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "云岫资本2026年暑期校招正式启动|云岫招贤" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779724800000", + "value": "2026-05-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月14日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "63d805637d89efc98ba17f511fc5a888e1d3546a40a9e020f39fdfeca9a9198a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/e3GyXoRpsQ6C4tKEPFPvmg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "88cf0d9f493c1474e774d6f6f7a011362a6128785996161ee9811f13179a89d0", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhfUDq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入SMBCCN | 成就金融新力量 2026暑期实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779724800000", + "value": "2026-05-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "19eee7e2a5d999c11b889c770d1eb6bbc7a7a189a50e1544ab480b296fc130a5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TYDiq-XDYgypVGbh3tCxrg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7d0fd170029d3b9642718858f35ef0cd6cedd0da8d4b02211762af657f906d6b", + "text": "https://smbccn.zhiye.com/intern/jobs?memory=%7B%7D&silence=1", + "url": "https://smbccn.zhiye.com/intern/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "https://smbccn.zhiye.com/intern/jobs?memory=%7B%7D&silence=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVpiX2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期直通金融核心赛道!国泰君安期货2026金衍同盟正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779638400000", + "value": "2026-05-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/杭州/宁波/北京/广州/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2324ec7e8472b37536dc902c99e6ac0307603bc01fdcb2313f8c85bf3b8d6ff5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FwC-Gl17rwOlnWur1jS4YQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "984c3c0a74ff43ce424712133804e74acf4b8ec9d89da93b709dfdfc669e59b6", + "text": "https://gtjaqh.com/r/s", + "url": "https://gtjaqh.com/r/s" + } + ], + "value": "https://gtjaqh.com/r/s" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEMnri", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "巨一科技2027届Jee nius实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779638400000", + "value": "2026-05-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4e41c8aa49052ca3c7b2843daf9cae3aaac3fece2121c7a623bbe0ddd4624bfe", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-fDU1N13kwTYZ5x6Y6gfAw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ef7a0150827f265c80d87f0fa2aa73d6efbdd3f2f3ee53bc2a91be1576403c50", + "text": "https://wecruit.hotjob.cn/SU64ed532b1c240e725e5af025/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU64ed532b1c240e725e5af025/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU64ed532b1c240e725e5af025/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwtwDH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "聚力南自 智启华章 | 国电南自2027届校园招聘开放日报名开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779638400000", + "value": "2026-05-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c6abcf66da792a0f4dc88e4ebb923ebaeb89203807d111d1fd55a91180dfb64a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cfE0gtsmdizIRZ-a9rZ_7g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e108dca53261348e3f539123d5465de28f7048853956eafef1038bd7a80cdd95", + "text": "https://v.wjx.cn/vm/rXt2KKU.aspx", + "url": "https://v.wjx.cn/vm/rXt2KKU.aspx" + } + ], + "value": "https://v.wjx.cn/vm/rXt2KKU.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryAwjW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "贪玩游戏|2027届实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779638400000", + "value": "2026-05-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd84f32b2a5ac138ecd1dbfe7fd3e5654295c10b85050e651a9b3f39672cf875", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/i5iWFfJQFqOBa-EdvDMzAA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bc573b32aa23637f1c50aa2addbef6633c2c5b2c8e75481781afe076aae34ce9", + "text": "https://app.mokahr.com/campus-recruitment/tanwanhr/166213#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/tanwanhr/166213#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/tanwanhr/166213#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3UpMf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "青春满志 FUN勇争先|顺德农商银行2026暑期实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779465600000", + "value": "2026-05-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月6日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "佛山/广州/东莞/江门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8ddc5dc3fa806da8bf3696bcbbfa994956165db8c36d92551e07d54ff1097808", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/jZJOgxA9F6pEQ_qPCYwDpg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e60571b3faa9aa80d91e6088ae7ad70e6f3ea4b35eb75e5ad7ee6c49772823bd", + "text": "https://t.zhaopin.com/07QINX", + "url": "https://t.zhaopin.com/07QINX" + } + ], + "value": "https://t.zhaopin.com/07QINX" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNXo53", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中邮资管2026年度暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779465600000", + "value": "2026-05-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9a9fea5588f37631f80732b994271114c3ec4da21929645dfee7a380f2e895e3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QltZRUxdY6u93ttHtW7eNg?click_id=36" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8904cbab5e6d56ce03739173add1d4944804ff0928e775a0bb762de083b3540", + "text": "https://xyz.51job.com/External/Apply.aspx?CtmID=8716564", + "url": "https://xyz.51job.com/External/Apply.aspx?CtmID=8716564" + } + ], + "value": "https://xyz.51job.com/External/Apply.aspx?CtmID=8716564" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJUtZb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "用友2027届友新星实习留用项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779465600000", + "value": "2026-05-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3ea98cad0eba28ba718e4538b7bb30048285bf1845a3e0ab729674d363a6aac4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5MN_MpJMIDh9EXqwMijqDw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0cc54dba6891fbf1c6923bfa3593a6d454d1f4eaf6966b7cd974e72e16162fbe", + "text": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html", + "url": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html" + } + ], + "value": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0UJEb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "约“徽”夏日 “银”接未来 徽商银行2026年暑期实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779465600000", + "value": "2026-05-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "11334093dc91a52ead24af15cdf47b5d39f4f4ebe0de218cf496cd2945c27caf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FJauJtjJw2DGTmdWXei0Zg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "4e300bcbc9c573b8c6afb63474fd657b2bb7908eb47a194aa60a713935eef4ac", + "text": "https://rczp.hsbank.com.cn/pc/#/InternshipDetails?id=951&type=2&channelCode=sxszp", + "url": "https://rczp.hsbank.com.cn/pc/#/InternshipDetails?id=951&type=2&channelCode=sxszp" + } + ], + "value": "https://rczp.hsbank.com.cn/pc/#/InternshipDetails?id=951&type=2&channelCode=sxszp" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkLGfA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "懂车帝2026暑期实习&秋招提前批启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c42185b763aa21780d67e927a927b4a89e15a0071273f252592a7da80b3de440", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yb_BvDcCS5WVI761bYwVLw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "58a2366fd7733a970ecf4a5b99c875d611e371277f63b3dd62a60e4d503844ab", + "text": "https://dcar.jobs.feishu.cn/campus/position/list", + "url": "https://dcar.jobs.feishu.cn/campus/position/list" + } + ], + "value": "https://dcar.jobs.feishu.cn/campus/position/list" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rd7DSN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "因诺资产英才计划【暑期CAMP】正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e5095110c0e2228bf29e3714d09aeac4581ac8402cd4a0778a4deb5d4a08209", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6lLhUOSSRPAV09OKa31gFA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9e7f9b0d8133d7d8633dc695ea870c31231ca0118ef785cf43111f44b48dd2e6", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRq34G", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "江苏银行2026年暑期实习生招募正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月29日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad0c3aa28b631b768b7ecf3782d94b120e5079e32a12e058e538638d90e3396c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7TL5SrVL2CoHuCI0mfrJjg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 412 + }, + "key": "c4db4d73a410661602b5ec0cf8d6a5560b7080d8d0056d0d54d9df991341f0d8", + "text": "https://hr.jsbchina.cn/spa/custom/static/index.html#/main/cs/app/415469a50449415a9b56642c69728966_traineesva", + "url": "https://hr.jsbchina.cn/spa/custom/static/index.html#/main/cs/app/415469a50449415a9b56642c69728966_traineesva" + } + ], + "value": "https://hr.jsbchina.cn/spa/custom/static/index.html#/main/cs/app/415469a50449415a9b56642c69728966_traineesva" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWiA7y", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "潍柴集团2027届校招提前批" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "潍坊/青岛/烟台" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea17e2225e4d96bae9acc6503c010330301ed64b2af1332c13da686524e9ceb1", + "text": "点击查看", + "url": "https://weichai.zhiye.com/custom/xiangqing?hideMenu=1&jc=2&jobAdId=ca45923c-0dc0-4115-a1c6-bd97107d31c4" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "427cbf5b77b93d03ed5bbcd09ba4b6a68fbf5d248ca89c1bcc1365737723a77f", + "text": "https://weichai.zhiye.com/custom/xiangqing?hideMenu=1&jc=2&jobAdId=ca45923c-0dc0-4115-a1c6-bd97107d31c4", + "url": "https://weichai.zhiye.com/custom/xiangqing?hideMenu=1&jc=2&jobAdId=ca45923c-0dc0-4115-a1c6-bd97107d31c4" + } + ], + "value": "https://weichai.zhiye.com/custom/xiangqing?hideMenu=1&jc=2&jobAdId=ca45923c-0dc0-4115-a1c6-bd97107d31c4" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6ackk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "ABB中国2026暑期实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/厦门/深圳/新会" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d92a0f03636fa41c59ed0ffbead7afd67cb4d82df6e2f46c83bca23af64ffd3c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TS2z4a7FZuNutsByNat2Lg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "740ad12175cd948e984d39f6a65512f62ee7c3f5434608c1d286b21927c0d679", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlJMj7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "康恒环境2026暑期实习夏令营来啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o04fQQ" + ], + "value": [ + "能源/电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "100574f7df4b5d4a7ed8ba39e1e2a27773dc69022b28ee06e264ed7e3bc9b825", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OoREjWSHrfQnuz093lDSGQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "881a8766f2bdaf6cf501abd69f1a961ccf832230d4944f4ac21c35328b86b16d", + "text": "https://shsus.zhiye.com/intern/detail/detail?jobAdId=0b745206-4d76-4bf8-aa14-6620e73226a8", + "url": "https://shsus.zhiye.com/intern/detail/detail?jobAdId=0b745206-4d76-4bf8-aa14-6620e73226a8" + } + ], + "value": "https://shsus.zhiye.com/intern/detail/detail?jobAdId=0b745206-4d76-4bf8-aa14-6620e73226a8" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKJs4K", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国移动“梧桐·鸿鹄”2026研学夏令营(暑期线上实习)报名启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "线上" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0d8934f4add5730276480bc825612a3d0b9002b96f55c89c689899cc7041b1b6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CpP_UTwL7isYbfmYcSSMBQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d0c736b3ed4630570edfcaef21a7f13847c33449b0025b7cf17ce79374d804dd", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQDxBR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小红书27届「马当路练习生」招募今日开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "63c4624bb5410d95dd5b3fa25e7f4db04671a44241e97840c0a73c0911f06b67", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_wU3e8MNoxBfraXBXB1JtQ?poc_token=HFuJD2qjaSlseKx3frCt_xbVaY83epILmXJ5fcDt" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b6b08de7091c5fafb18a01b85f9f01a682925abce2de2ed91f9358e8cdd3b992", + "text": "https://job.xiaohongshu.com/campus/position?referer_code=0EQLWFLLPKOH&positionName=&jobProjects=madang_trainee", + "url": "https://job.xiaohongshu.com/campus/position?referer_code=0EQLWFLLPKOH&positionName=&jobProjects=madang_trainee" + } + ], + "value": "https://job.xiaohongshu.com/campus/position?referer_code=0EQLWFLLPKOH&positionName=&jobProjects=madang_trainee" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ5GvQ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "九机Young实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779379200000", + "value": "2026-05-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月1日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "昆明" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a9f3a6af64f964e802108f891dbc664219ef2daa196362cf5997fa6594eaa40d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Zuw5Jf8UZLyzDfU-emnX1A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1d65a0b28b1515a7821aae90c7b1fae2a72cddbe3646f66cb30bc4f46f4cfca0", + "text": "https://www.9ji.com/job/list/2?workTypes=3", + "url": "https://www.9ji.com/job/list/2?workTypes=3" + } + ], + "value": "https://www.9ji.com/job/list/2?workTypes=3" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6tjHO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "以爱为名赴新程|通用技术国际公司2026“通新粉”暑期实习生计划正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779292800000", + "value": "2026-05-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2d6c51776b11a37546ff698402392767ce0dd11c0d48953058231420ecacc74d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QnUe55N1TP2YZAVOFUJr0w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d9afeb465ec2c98f5d29ecc778782fa680a8732e13cfb6f6b242f53175996b6b", + "text": "https://genertec.zhiye.com/custom/edac2a72-02b0-1714-d43a-ed70d94a6459?queryId=1c663c8e-0b12-4c5f-b671-5f4446a061e0", + "url": "https://genertec.zhiye.com/custom/edac2a72-02b0-1714-d43a-ed70d94a6459?queryId=1c663c8e-0b12-4c5f-b671-5f4446a061e0" + } + ], + "value": "https://genertec.zhiye.com/custom/edac2a72-02b0-1714-d43a-ed70d94a6459?queryId=1c663c8e-0b12-4c5f-b671-5f4446a061e0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkAtZT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园招聘|华谊集团2027暑期实习“STAR”计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779292800000", + "value": "2026-05-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/广西" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b76ffe4fe7d8c541c8a859677b93a6dfd769417f92faf936b43212266bf45ac9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gqA3VQW3605dI4MphfT8Ig" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b750cc9e122b3b3a9e4bfbba1c44ac8470507e8aa8f020041b8d0083ece94d3a", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ri63aJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "点宽科技2026实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779292800000", + "value": "2026-05-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c7fe99ca5a7e940ecbc474f805a19469d72d0d99538432b626d61cfa2ca4c95b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/T50ZONRFSJFrQVcLgDNAQw?scene=1&click_id=2" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ee6e35ba3d9a051a181e9496f1e93fa9b18c76bcfea1b284344d48abe54e1c00", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNybbM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国移动2026“梦想+”实习生计划全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779292800000", + "value": "2026-05-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "904232d0e13839f7d9ff63c0bc266b420b4e17c78b7dcebfe38a6934bb4166a0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hOJV578VoK6iokhhJNaS4A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "41a7f65792fd0ecdcc22b4985951680f64c98db9ad0455d6ebd836cf49bf864b", + "text": "https://xyzp.51job.com/zgyd/sxs", + "url": "https://xyzp.51job.com/zgyd/sxs" + } + ], + "value": "https://xyzp.51job.com/zgyd/sxs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rff3rv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "迦智科技2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779292800000", + "value": "2026-05-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b18a913621a918f769778ebfa979ba8c9dedbec766d47319b38356bac3bde1f4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pSLE_oWSlPbi2yILzlgN5A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b1f195024fbc9aaf442dce158b5ca7bb9d85025f7213b23229716b111056ec54", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqak9t", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "江苏金租2026年度储备实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/江苏/无锡/常州/南通/合肥/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ee5f68a5d656f89904d734834ce3837fa11ba85773194b2bbc3032bcef54aab", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rWHSkOQRh7Q5-MtO95tFlg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3720a276449d4f61ba51ef176ccce9cd137b7a3550ba1a4a3525f517f8d44c3c", + "text": "https://campus.51job.com/jsleasing2026/p1.html", + "url": "https://campus.51job.com/jsleasing2026/p1.html" + } + ], + "value": "https://campus.51job.com/jsleasing2026/p1.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKIBj7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广发证券2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/上海/北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b7cd2fccf74be9b0692414af543ae02b0add2e56e87074dc0881b4a5cd9e6b09", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/K2_Cr9h1s5RBukaudFSrOQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "23f67b32fa24da430a4bd375078f1c4eaeef1d1e5554b9a5f29e5b8eaaa296ef", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6BE9x", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026南方报业实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "abda420c58c114a093f6c7c1af7bb34bbf0f54c6762b8207f80818cd75be3a3d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nrn6rO1tA8QQK3G3s5VKnA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3bbee74fd1e47c5f338b31872d3d65c8301e8a4128b908c54498212bb676dc90", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmBhuk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中金所技术公司2026暑期实习招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月7日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0f2828c5da1515e34aa77be0fdacbbe0ed188fe8ab9d9ace56950c6f69d4e45a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CsyQu-mzyj0uQK4PWGW3sA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "40fe28f11242a5edd7063c38c97e445eec2d7f517474ef9fd12e0dc43a73b8b2", + "text": "https://cffexit.zhiye.com/alljob/?o=2", + "url": "https://cffexit.zhiye.com/alljob/?o=2" + } + ], + "value": "https://cffexit.zhiye.com/alljob/?o=2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0vH9U", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "您有1封来自夏天的邀请函 | 光电所2026年暑期开放日(613)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "洛阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "370978056bd7e9b0306bb555d81ae763188ba212585e75d2ec8f1257aa78f43d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LdrwiGOXdUGjw0Gn_bdHPQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "508d424c6a3cc41a1e2d7cdceec4818a5786f9da2461a67076d5ce2e9b280de2", + "text": "https://avicoptronics.m.zhiye.com/JobAd/List?jc=3", + "url": "https://avicoptronics.m.zhiye.com/JobAd/List?jc=3" + } + ], + "value": "https://avicoptronics.m.zhiye.com/JobAd/List?jc=3" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlHO3F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年中国能建中电工程华东电力设计院暑期实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "18bc4633dd3a7966370c0dd28d93f84782af0131939b93e3d4147d222671446e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sWstp-ZMHfRc6k7pgDlfLw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ccbfb66d5d88cd375c75887cac87446f7154c23e3d7f0e673743999aa9f4cf3b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmnLue", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "追寻梦的光点!中国化学工程华陆公司2026年暑期实习生暨“筑梦计划”招聘正式开始" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月26日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3223452222bb2de06873f8b269bc3186a6bcc5c977bb5717c4c1aecfa41ee156", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BkgxRY9UIV9FnVEWLIEpqQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1ad8cb1e5910a49e3ebea7a56bc7b4b90c09337a6bdb7b1e0238dda036f2776a", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgawg5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "翌耀科技暑期实习生招聘,“职”等你来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "496d96718f855669545896c2d54906152d89f936a171e86d526cc9380e0dea44", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ues_3iE-hwE3jZkI-KMwSg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "48b1e5854e3c528246d8c93abd41f17eaee27060b205596fb305353b4bf6114f", + "text": "https://wecruit.hotjob.cn/SU6209c4b8bef57c632bfd63cf/mc/position/campus?projectCode=100401&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU6209c4b8bef57c632bfd63cf/mc/position/campus?projectCode=100401&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU6209c4b8bef57c632bfd63cf/mc/position/campus?projectCode=100401&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxbtAA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Z Partners | 暑期实习生招募(全职留用机会)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6459a653328e854e12ae50b269f35262748b1ad646344a1d9c39a8e31e24c52a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DLoq22qoRYvjvvDiiRG-FQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b758b31fe875d7511526d64a104e1c8b02c3b832a39e75b70ef65e91f7e35e4f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMYpec", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宇树科技2027届校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oAw1Y7" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "25bf2d05d2702e126e31d8a35348fc39c33d7ba1485f5c3f971c888859c95ac2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LZXzxR-rQ-rQwpHTiInD4Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "81e8a06aae398fa5386cce806d2428b77e4920e4548031c352d24bd6bd0fbeb3", + "text": "https://unitree.zhiye.com/jobs", + "url": "https://unitree.zhiye.com/jobs" + } + ], + "value": "https://unitree.zhiye.com/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4p2Me", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【申万宏源研究】2027届暑期校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779206400000", + "value": "2026-05-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "09bf49527e28d67745093c9afc4c7f29047b5bbeec3073482f4ba01c804a63fa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JJri4zivbuvThnAPsCo2sA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "743a90535f4503c9299cfe718fd8a979adb19d220411cae98e27e06edd9c55ca", + "text": "https://wecruit.hotjob.cn/SU64464d3abef57c46aff3357c/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU64464d3abef57c46aff3357c/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU64464d3abef57c46aff3357c/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rn0HhL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中邮消费金融2026暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779120000000", + "value": "2026-05-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "946132d33132b87c59505c321550a31e9e88d8a83f11c013519cb39943b9f044", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Cn-Vu_uXB05md5EEMsHt9g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "740d4280b43ed85aaed845829e4036b1f772ed62f4191bcf87541b1fe4362d5a", + "text": "https://is35svcbne.jobs.feishu.cn/youcash/position/list?keywords=&category=&location=&project=7354952949624342835%2C7641043112991262995&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://is35svcbne.jobs.feishu.cn/youcash/position/list?keywords=&category=&location=&project=7354952949624342835%2C7641043112991262995&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://is35svcbne.jobs.feishu.cn/youcash/position/list?keywords=&category=&location=&project=7354952949624342835%2C7641043112991262995&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWucmf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习|宁波银行苏州分行2027届暑期实习生招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779120000000", + "value": "2026-05-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e6388bed24f6436d7434966242621d267a8512bc5c93da54840ff182d1ee06b7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/N3GvDbz8gK-dXHk3BHCsXQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "e3a6458fc677d1c99f40b0a7a44dd59daff56df58d3bbdfbf83e0cb67627bfe7", + "text": "https://zhaopin.nbcb.com.cn/#/internship-recruitment", + "url": "https://zhaopin.nbcb.com.cn/#/internship-recruitment" + } + ], + "value": "https://zhaopin.nbcb.com.cn/#/internship-recruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r08Kau", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宁银理财2027届暑期实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779120000000", + "value": "2026-05-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4c3c1edd8eccf901ceef06ccbf3851f192b57da1a7665cd1570b9fa4b15872d4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Mp9CJJaV0VazaeHB9Fjf4Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "659ebbee990deb4b253608d955f07c5fa628c24d967aa63f2c92998d09127267", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSMIOL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "巢生资本2026暑期实习生招募启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779120000000", + "value": "2026-05-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d66bb1fcdd286b908fd588da2d091b292471ddfcc08fa50955db19e87066e4a5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fbkCYTeiI7EofkIBDDjZqg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d72eee4fe3b01bd3b07c87a9989248632400a22e69542ddaa14407c546946563", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rx6TxY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "这个夏天,来霍威搞点事情|暑期实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779120000000", + "value": "2026-05-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f7ed251a1227e3c2a9a962e690164307fe70f17fd9d168a3ffc1851889b0d5cc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xdcVGlHcMlfaPYAgetH8sw?scene=1&click_id=3" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c2f5496b6b4549f2c047a221a23619af462874fcbcf7fce0b88074752507da4e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rC0HaC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国电信2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779033600000", + "value": "2026-05-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "417f7c2f573c538f4207e14ca89a497225764dbf47ee243711735b0589ede760", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xm3O41IsX6U1R3XE2mDg_g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad0bbef4563bfa1f5d6cc289982415b2123ae49e370fce02d4a44254f45d4a7e", + "text": "https://job.chinatelecom.com.cn/wt/TELE/web/index#/internRecruitment", + "url": "https://job.chinatelecom.com.cn/wt/TELE/web/index#/internRecruitment" + } + ], + "value": "https://job.chinatelecom.com.cn/wt/TELE/web/index#/internRecruitment" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbVGJI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "赛力斯实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779033600000", + "value": "2026-05-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "重庆/上海/成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a3e192efb4dd58bd8a75095db884b36d76987278833150e7d1df1279bbeeb507", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_FdaHhFekkrDaMTKWHq5RA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9c5c581abe47df138d70342a440dbaf3b6d378a0fa5af1f1da04e18818916f6d", + "text": "https://sokon.zhiye.com/intern/jobs?queryId=14eb9570-55ae-4cdb-bde3-81a023d508ba", + "url": "https://sokon.zhiye.com/intern/jobs?queryId=14eb9570-55ae-4cdb-bde3-81a023d508ba" + } + ], + "value": "https://sokon.zhiye.com/intern/jobs?queryId=14eb9570-55ae-4cdb-bde3-81a023d508ba" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6EC4t", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星途启航 逐梦飞扬 | 复星2027届实习生招募,即刻启程!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1779033600000", + "value": "2026-05-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oKPbel" + ], + "value": [ + "多元综合" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cf64822723e697173a7d5cd42a7b1d209434ccb43ce66869038aad56591df74d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oiNKs0cLUht87q-TzLuNWA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52111009e0ca36e8db6cebee136819a957bff71867f74160b356d53b84aefd52", + "text": "https://fosun.zhaopin.com/home/index.html", + "url": "https://fosun.zhaopin.com/home/index.html" + } + ], + "value": "https://fosun.zhaopin.com/home/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfWpDO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "信银理财2027届校园招聘|暑期实习计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778947200000", + "value": "2026-05-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月7日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "84c26a88fa1ef8d2d52cdac4a608f086f8bdb06be499c329afceb247fc948ddb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/o0PJ8rDjOsJvIc1Ombujkw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b279ffc8ae87a7e0eb7cc33d760fc9e05213f9deb22e0005cab761968b6f4a45", + "text": "https://campus.51job.com/citic-wealth2027/job.html", + "url": "https://campus.51job.com/citic-wealth2027/job.html" + } + ], + "value": "https://campus.51job.com/citic-wealth2027/job.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rS6CFo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "正浩EcoFlow2027届暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "okzN0z" + ], + "value": [ + "储能" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "af468d398ba623f60e65e2ee4c9a72ceae2f9f08ab7421c80cac9d9fcd71fb3b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XsSBjivjpAyKjbrSrCQ0DA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "18f7f2d85e1a20a1527bc4087d1cfcbc48fe50b2968a6af837b50bbe29bc11bc", + "text": "https://jobs.ecoflow.com/s/vl7HTJcem0k", + "url": "https://jobs.ecoflow.com/s/vl7HTJcem0k" + } + ], + "value": "https://jobs.ecoflow.com/s/vl7HTJcem0k" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqe5xZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中海地产2026『海之子研习计划』全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "296547af38c0febf20b30fd553736d8b523e774fc9046b6f83f9487d3e0868e7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/y6yr9ZeeiFBD-8cnUuPeeQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6068fa155e07f17f54bb356e1fc39d494df71466f8b4e386dda40a2b2072d20b", + "text": "https://coli688.zhiye.com/intern/jobs", + "url": "https://coli688.zhiye.com/intern/jobs" + } + ], + "value": "https://coli688.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rD9iY9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期实习 ▎中建咨询第五届兴咨生实习生成长营招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/广州/苏州/佛山/雄安新区" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "25e43bfcf5febf7cee1152055f2c26bf0992273bbf18f1127e730733a0b42eb0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zmsS5eDp9_16Ft2uOYadfA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "32fd2d0b4f685c874ee628145c21061fe993f6a2078515fe0769e555e306ccdd", + "text": "https://recruit.cscec.com/recruit#/portal_job_list?job_class=campus&filter_dict=%7B%22select_depart%22:null%7D&company_id=1873&contract_unit=32049809", + "url": "https://recruit.cscec.com/recruit#/portal_job_list?job_class=campus&filter_dict=%7B%22select_depart%22:null%7D&company_id=1873&contract_unit=32049809" + } + ], + "value": "https://recruit.cscec.com/recruit#/portal_job_list?job_class=campus&filter_dict=%7B%22select_depart%22:null%7D&company_id=1873&contract_unit=32049809" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmNvJO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻找未来新行家 | 上海农商银行2027届“鑫体验”暑期实习生开营啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fe31ed945ef42f7688930ef63afebfeda3b1057e14e7e2336dc19de51fafa837", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/leV9nxFTZ5CvgJrTu0x3Qg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a4fad5ea4b1889d106fbd9da303c13d042f9a6a9f427935c7eb25931d382319e", + "text": "https://shrcb.zhiye.com/campus/jobs", + "url": "https://shrcb.zhiye.com/campus/jobs" + } + ], + "value": "https://shrcb.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKvMTM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习|浙江交通集团2027届暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "浙江" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "269585ea73c3a24c2a2d1ffd80903cf16e38b1e9a54a1fbd3ae742f798d0ade3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UWClTx6t2XqU7EsWYG5PYg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "05127d668b5c9791a13d952a64f13cb28c110df08b72ff1b652aafadaf2d1e8d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQRgiQ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国绿发2026年暑期实习生招募进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/辽宁/大连/昆明等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e59484b4f87af40c6c93f08c6381ae50bf2a10dc5e74707c96f4730fd04bcab4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uk-fIJCQTTIUco66VxWljg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e2015032966643f2f79be363ee423ba96e165b629a77eca600beae1e70f295f7", + "text": "https://zhaopin.cgdg.com/sxszp/zp/xz/ct/out/campus", + "url": "https://zhaopin.cgdg.com/sxszp/zp/xz/ct/out/campus" + } + ], + "value": "https://zhaopin.cgdg.com/sxszp/zp/xz/ct/out/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSzFsC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上汽大通2026年暑期实习正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/无锡/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7e8bcc7cb8849d5143d9f40bbf08d18f70ce8df7bb65cbca47aebca7dd75fb99", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fTmSFfYvHJh29Qti1_dc6w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea7075e03bd39d2531cd2853b1c6f523757be07eb88b797717d600110e436a1e", + "text": "https://saicmaxus.zhiye.com/Intern", + "url": "https://saicmaxus.zhiye.com/Intern" + } + ], + "value": "https://saicmaxus.zhiye.com/Intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2UD5v", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "三未信安2027届校招提前批招募计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/济南" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8fe4be9d552beed5406e93f3ca9a7da286ef49fcf257e0b7e7734e0d4753c60d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mhKVJJZd9_mfo1BLkJx1HQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5a19b531c6d873893d41fcb82e3a0e1ce744706a6eed28d27e5c4fa5aa4c6e1e", + "text": "https://sansec.zhiye.com/campus/jobs", + "url": "https://sansec.zhiye.com/campus/jobs" + } + ], + "value": "https://sansec.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNfhW4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华硕研发 | 实习生招聘已开启,欢迎关注与投递!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6537e8655a1bc26d714ca5fe11b0cf7b7c3e0adafae45ec5f65b7712a30c4dda", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/m6Rkqp43TVw-Q-UOhmgl_g?scene=1&click_id=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a033fad7070e0f206724c4409c5a9da7f452248f59e32cc8b03d22fa73d33579", + "text": "https://asustek.zhiye.com/intern/jobs", + "url": "https://asustek.zhiye.com/intern/jobs" + } + ], + "value": "https://asustek.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0OnlN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "挚文集团2027届暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9832e28f722d3d98392745ec42e55073f46920a5b1c11fa4fb523692c747e661", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fk-FFlmNe41GjnWVek5uyg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1c5b9da1b3e2ebef1a8c0ce7a4f61e9ac5b7160259a99e58e522031d204d902e", + "text": "https://app.mokahr.com/campus-recruitment/immomo/54299?sessionid=&sourceToken=42725e9e0f9c9c5a9ded2e9ce7b17eeb#/jobs/?zhineng%5B0%5D=240098", + "url": "https://app.mokahr.com/campus-recruitment/immomo/54299?sessionid=&sourceToken=42725e9e0f9c9c5a9ded2e9ce7b17eeb#/jobs/?zhineng%5B0%5D=240098" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/immomo/54299?sessionid=&sourceToken=42725e9e0f9c9c5a9ded2e9ce7b17eeb#/jobs/?zhineng%5B0%5D=240098" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCdXmi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027堂堂新生-行销校招生提前批启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyr0YZ" + ], + "value": [ + "零售快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03aa7f7f72518d5da79ef9e7a659ef32846bd4ed3965c37e8ce43070f891a3c3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2DMAMrGr4vuw5DpnfGjEjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "86cd2b382d5af16a986fa7a4a9d391cab9f73862a25c51484a2343f29270c378", + "text": "https://jobs.yst.com.cn/campus-recruitment/yst/68367?sessionid=#/job/3a1c112f-3b65-480b-ad8a-86741ff88002", + "url": "https://jobs.yst.com.cn/campus-recruitment/yst/68367?sessionid=#/job/3a1c112f-3b65-480b-ad8a-86741ff88002" + } + ], + "value": "https://jobs.yst.com.cn/campus-recruitment/yst/68367?sessionid=#/job/3a1c112f-3b65-480b-ad8a-86741ff88002" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rF377e", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥马冰箱丨IT实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778860800000", + "value": "2026-05-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广东中山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "08077a2ebd24a6836353e4e94950fc5a420b473eccbec50973d93782fb93f7d2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4LjDFd0Ld-6_BXeoon26Lw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "97447e36ca32b5dc5fa8756f1c5c7851c12f13f7eb85dceafd7d21998f79b3f3", + "text": "https://homa-hr.zhiye.com/campus/detail?jobAdId=36efb692-7c0c-4527-a154-be98e1abcb58", + "url": "https://homa-hr.zhiye.com/campus/detail?jobAdId=36efb692-7c0c-4527-a154-be98e1abcb58" + } + ], + "value": "https://homa-hr.zhiye.com/campus/detail?jobAdId=36efb692-7c0c-4527-a154-be98e1abcb58" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rt6fRR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "志存高远,向光笃行丨长江证券研究所2026年暑期实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778688000000", + "value": "2026-05-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9dc2dcd3e8e229cd4a144b8d8b7128231edc0238fc21b629ee84c39063182e0d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zl4szmYQDoqM5Vuy7OQl7g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d88dec230d3aea442d556a3ea783c7adc7bfdcfff25d8e0f901fadc67e59ec33", + "text": "https://cjzq3.zhiye.com/campus/jobs", + "url": "https://cjzq3.zhiye.com/campus/jobs" + } + ], + "value": "https://cjzq3.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTOLqY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中建西南院:27届校招提前批速递!第十二届菁英实习生计划荣耀启航!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778688000000", + "value": "2026-05-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87f8bacfc6763c01a6b6e0dcb027512de2e215d7efbb00d851cb708a9d4de709", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nqh2ZVGaqFMCUHAtgF5KQw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0c3699055a883cc500db0b9b3795b076b9d8ce9b00d09645dffc0cf7482908f1", + "text": "https://xnjz.zhiye.com/intern/jobs", + "url": "https://xnjz.zhiye.com/intern/jobs" + } + ], + "value": "https://xnjz.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvyogR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Join Us!光轮智能实习生正在招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778688000000", + "value": "2026-05-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7ffe413754b0149c3de2287ae97f4c5f12b9559eca3b2258bc89011d37fc6f4e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hsYiRmgg2dhw6e5Q2sLdxQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e745cbf73d6074a2cef6e2e3f98d3ab71925303fe3e7e5340f49768a56c6d624", + "text": "https://lightwheel.jobs.feishu.cn/referral/position/share/?token=MjsxNzc4MjIxNzcxMDU1Ozc1Mzk3OTI0MDM5NjQ4NTQyOTE7NzYzNzM5OTM3OTIzNDM0MzE3ODsx", + "url": "https://lightwheel.jobs.feishu.cn/referral/position/share/?token=MjsxNzc4MjIxNzcxMDU1Ozc1Mzk3OTI0MDM5NjQ4NTQyOTE7NzYzNzM5OTM3OTIzNDM0MzE3ODsx" + } + ], + "value": "https://lightwheel.jobs.feishu.cn/referral/position/share/?token=MjsxNzc4MjIxNzcxMDU1Ozc1Mzk3OTI0MDM5NjQ4NTQyOTE7NzYzNzM5OTM3OTIzNDM0MzE3ODsx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rj0K58", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "多维资本2026暑期 「Super Intern」 项目启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778688000000", + "value": "2026-05-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "947b8de8b5c5082c9496b0327e27fc194d5338038c1f4c07fe50879c0252d29d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/MLBbS4p1Lyp3-MLz_y0j4A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5572c208630a467efa529a1efa9a85d3e1fa5dfebe7e95e33e12bf75c3e01722", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rI1DQO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "汉缆股份27届校园招聘提前批暨2026春季校园招聘补录启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778688000000", + "value": "2026-05-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4FF2z" + ], + "value": [ + "电缆/氢能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d84639376e41c90ad9bf22b1c506ddad3cc809dec4b3565fbbdb4300ee28c3aa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ku_5567zMLM_HkSUG6xYcg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1a12c76d86b078656535a57ed76198bc675c2a5255730e0feae882d231b9d9dd", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8lWp9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿斯利康中国2026年试翼计划实习生项目网申开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e8c9a2bf27d80689e0e52d648246ee0aaa26f980bea251e3eda0b75239b635c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rnJXZOGXnUYJtQxF2VYCHg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "90c91c62c9b7e11184a4ee70b571d8be67de578a9396ccab0fb68ce93caa011c", + "text": "https://app.mokahr.com/campus-recruitment/astrazeneca/148833?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/astrazeneca/148833?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/astrazeneca/148833?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrr0Ld", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【招聘】玫瑰岛校招 | 可转正!「26-27届暑期实习计划」正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广东中山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65165ab7ca7baa56879d5a2b0788d5afa7d8249c85321963824e90aa8be1cab2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QH1MFcxlkBmxX8mUiq6VMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "616325c1627da6a9b5b5367cf0483f3aa39a610635091b2d74a0703bb81ca79a", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryHL7n", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入我们,实现价值|2027届卫宁健康校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "ozJFiO" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f18b5f0a0677c6a97417a11d0619f733a07a247a5926c50f78be8dc86dff031a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ulfbeXte8r2KHogOpBTN7g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "045192ba3dd51ceaf05c21ad78442b9f7b534dbdf99fff35852358da0ecc8f26", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtqOMB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "苏星π成长计划|苏州银行2026年暑期实习生招募启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d6ad43c0e944381e027a944feafc42245c610b0883980061de94bd20621287f9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OGHmGGQrvatUQv13BLKHag" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "17971727e2f4d2675516b6783266fe8592032fabff5a4066196c9ace0e1caec8", + "text": "https://suzhoubank.zhiye.com/intern", + "url": "https://suzhoubank.zhiye.com/intern" + } + ], + "value": "https://suzhoubank.zhiye.com/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2ZYNF", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宁波银行总行金融科技部2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d3b7b2933d013bd089ce3dc44b0799c05d63e98d46cc9c66ccdbb842df87aacc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CRYrAcQu1CTwBYbhgYaA6Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "2a0798cc0825c50ce9d8fdd890169edb240cc42c184f2d98d0c1b1bc41fd2d5a", + "text": "https://zhaopin.nbcb.com.cn/app/?sessionid=#/postDetail?id=5e08c77d06344d18990cd40a4c545bfc&postType=2", + "url": "https://zhaopin.nbcb.com.cn/app/?sessionid=#/postDetail?id=5e08c77d06344d18990cd40a4c545bfc&postType=2" + } + ], + "value": "https://zhaopin.nbcb.com.cn/app/?sessionid=#/postDetail?id=5e08c77d06344d18990cd40a4c545bfc&postType=2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7iMQc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "帆一尚行|2026年暑期实习生招募简章" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778601600000", + "value": "2026-05-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "00cf838d761eac8eae717c03bde25debdb338fb5408155140522ea8415f556a6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/230_HpQ559QDWdueCPM20A?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1442bbf579eaf8b844896bc0c1e57b0888de845b4635ae7626af6bc3a4e1ef9e", + "text": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit?positionType=2", + "url": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit?positionType=2" + } + ], + "value": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit?positionType=2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZqFTX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "邮储银行宁波分行2027届暑期实习生“早早鸟计划”火热开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778515200000", + "value": "2026-05-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b8813f83837aa34fe801f86b9e815e378e1ef29f54bf6e213a0cc9c3873d3d7d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JUim5gXf0NVoYBjpkfQYOg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d67abdf7ef89cfb4acdfdc9ff1acb7232dba374b2a5bd2f94d5fa0401ddf09b1", + "text": "https://young.yingjiesheng.com/xyzlogin?ctmid=87633965-95b1-4116-b72e-647b28550db1&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D87633965-95b1-4116-b72e-647b28550db1%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r", + "url": "https://young.yingjiesheng.com/xyzlogin?ctmid=87633965-95b1-4116-b72e-647b28550db1&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D87633965-95b1-4116-b72e-647b28550db1%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "value": "https://young.yingjiesheng.com/xyzlogin?ctmid=87633965-95b1-4116-b72e-647b28550db1&ehirejobid=&jumpurl=https%3A%2F%2Fxyz.51job.com%2FExternal%2FOthers%2FLogin51.aspx%3FCtmID%3D87633965-95b1-4116-b72e-647b28550db1%26prd%3Dyddzy%26prp%3D%26cd%3D%26cp%3D%26r" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPAY6F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宝宝巴士2027届暑期实习招聘开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778515200000", + "value": "2026-05-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "福州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c5b9293392c1edba1ca4b7fb9f9b32a3be95b3a5612fffaac4d8c9abc776182d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Aydsf3_lKJrt1GyCkXudjA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9739c1ac6a92674155d8b59858f80dfee14a0cc508d4e43ec7a5bb08aa08c32c", + "text": "https://babybus.zhiye.com/intern/jobs", + "url": "https://babybus.zhiye.com/intern/jobs" + } + ], + "value": "https://babybus.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqExjn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "众夏新生丨上汽大众2026暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778515200000", + "value": "2026-05-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "12e84b5ec458080475dbfe85c510de649f16a88e40a83839d29fcd970a6a2530", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8VgqwvD5xwEy-Vg-S1uWcQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c215e3e25c700eaf6a4b41a3c4bd1a3920501992ed7c0c72d10a12fffe3621a0", + "text": "https://csvw.zhiye.com/intern/jobs", + "url": "https://csvw.zhiye.com/intern/jobs" + } + ], + "value": "https://csvw.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgPi2P", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "财通资管2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778515200000", + "value": "2026-05-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9ec097cd16e4fa99312cb06a4fb9254a5d7a013aea151f4b1f09173fb5a94b04", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7xai24m9nTCDUZDVdMY38A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f49648ff1358b7270cdabc9d67266ba7760035814009d50ec645c1e75804f00d", + "text": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1gK6a", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "傅利叶研发实习生专项招聘开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778515200000", + "value": "2026-05-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5633f9d82cc8506e1abf19102a73235dbf8057a95895c2b9dd3354ddc38d1d46", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8bma89Ys7HbAQ-aI5-TEmA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea388949b338cba1efa454f0ad34fe85de4459e986b88da94f1f595f43fec6f7", + "text": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/fftai/147078?locale=zh-CN#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsyyq2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海天集团2027届暑期实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "96a149070ce45c6ece6ded240e0353dd208e6ccc046dbcebe8462f41fa04a932", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Mfx2aLkIAW0H8kwZFjqQyQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6da00e1234f1d8ab8ccc37a7b69ecb9e5e73582e89a2e602ac695321652f15bc", + "text": "https://haitian.zhiye.com/intern/jobs", + "url": "https://haitian.zhiye.com/intern/jobs" + } + ], + "value": "https://haitian.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWvbVt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "朴朴2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "福州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "720dd39d182a044f7099254c291f6c38ebc0baed61d7ce4e5877f03b2797b70b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/aT-xzgyQEy-3e8nF5iFieA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "812126b3d7660b14be7eef9c5e0d3cf52f17ef4d658a393ef65c132b29727942", + "text": "https://jobs.pupumall.net/recruit-webapp/candidate/school/job", + "url": "https://jobs.pupumall.net/recruit-webapp/candidate/school/job" + } + ], + "value": "https://jobs.pupumall.net/recruit-webapp/candidate/school/job" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhp8Aj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "蓄势π发|2026微派无限π·Camp招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4fa4f2e63506bcfd4c2a03636d3392f440c768973525023fbed2bf9c76fd6131", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RwiELuYHcMdRD9igfNyW3A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7bb4d8afe278383ad35d7073c1617335183bdacfeb28618ddbb7a46d1ba4635e", + "text": "https://wepie.jobs.feishu.cn/359597/position/list?keywords=&category=&location=&project=7637471991398123827&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://wepie.jobs.feishu.cn/359597/position/list?keywords=&category=&location=&project=7637471991398123827&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://wepie.jobs.feishu.cn/359597/position/list?keywords=&category=&location=&project=7637471991398123827&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6pBWn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中科院空间应用中心 | 2027届“航天之星”校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6915a0c62546bdc76788aa247df440482a8cf65447b216328f60fe01fcc66427", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nLPSyrkiAqB_vwRLIcPXtQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56b4995876aceea81d32b17594eee9a99e68dcee26090716921fb64bc9dfed76", + "text": "https://csu.zhiye.com/Alljob", + "url": "https://csu.zhiye.com/Alljob" + } + ], + "value": "https://csu.zhiye.com/Alljob" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXAIy6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长城基金2027届校园招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "99938b35ea4978fb5d99e07de28d877424e8139bad81ca6df6af518df740cd2c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/guYE2OgqAC70TnWdDMNz8A?scene=1&click_id=3" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dc1469a327ee8cada312cfebea6d7638d569a475f6c36fed60f3a7fabf4effef", + "text": "https://www.ccfund.com.cn/main/", + "url": "https://www.ccfund.com.cn/main/" + } + ], + "value": "https://www.ccfund.com.cn/main/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlz7LY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "上汽集团暑期实习正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州/南通/合肥/芜湖/重庆" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b74bc8c9ab48327ae7c76dbe177ed2aa6b302227429a8653a9285223041610cd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/x2O9Pv54jC9EPz1Mag-iyw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "061ff5a19e95dc96b170ef24fc32a7a716219ac62deebb41474c5a66e63b18e7", + "text": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit", + "url": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit" + } + ], + "value": "https://saic-recruit.saicmotor.com/recruit/pc/#/collegeRecruit" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9Wn1c", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "初生不凡,筑梦启航 | 英柏检测2027届实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqgIpL" + ], + "value": [ + "检测机构" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fbb6ac21a8b23ca5754b2c01dd3f83f1e9ae7b3fa80c9e2e8f2a104419d73523", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NcoEJW6QIAR-QfYsPkV8WQ?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3d78aa097c0d9682b2680b595f83fe3cb9107175ba7a9c325b2d5b2c1d790372", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rACXX7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奇安信27届暑期实习开启!加入菁英计划,安全岗位等你来挑战!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778428800000", + "value": "2026-05-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DVpE" + ], + "value": [ + "网络安全" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州/广州/成都/厦门/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d61a39173c110fbbf3d0ce5cc43f5c98fb27a77272b769597ade6b990128c804", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BficbYNO6qKVAE0UmowZcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6937b595d6e4aff6525e3ca8c47b81991c34035fe7493e2ce08edc2891032231", + "text": "https://campus.qianxin.com/campus/jobSearch?type=shixishen", + "url": "https://campus.qianxin.com/campus/jobSearch?type=shixishen" + } + ], + "value": "https://campus.qianxin.com/campus/jobSearch?type=shixishen" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r84HUI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "盛夏集结令 | 三石园科技2026暑期实习" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "珠海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a2cb86e29f4c2a8205c7c3912802c52cf177705bd313859fa63219fdc5948cf0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iaM5tnb8h-dwftllpGIxuQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d526b41cda513b11cb2fe1d8e0c7d48a0d8566d4ddb29d02055f86ef48d99f67", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roqusZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 国投证券产业研究院2026年暑期实习生专项招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f4831df6ac969f698efd603a324e7f60e872bd7dec4cbcb8d0d5f4957f000dda", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/a95yGxJqa8xVlTHLI1yxKQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7a148549c097ced9dcf2a1fe762b3185b199451eecef164ca4ea03c6f8c4b6d4", + "text": "https://wecruit.hotjob.cn/SU625d4ccd2f9d24287db12878/mc/position/intern?sharePostKey=845b02768641484b812357ddef012d82", + "url": "https://wecruit.hotjob.cn/SU625d4ccd2f9d24287db12878/mc/position/intern?sharePostKey=845b02768641484b812357ddef012d82" + } + ], + "value": "https://wecruit.hotjob.cn/SU625d4ccd2f9d24287db12878/mc/position/intern?sharePostKey=845b02768641484b812357ddef012d82" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEJzC1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "泰隆银行2027届暑期超级实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4362ff2f686484068901e8969eb12f1d7532e190fa57085db4199cb6614c0feb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/C4aABA3Pdqpj4lsUB7DBBw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e174955983b17316b04fce0e46e7f035517e5027b6cf80cf099e3d3ff263babd", + "text": "https://zjtlcb.zhiye.com/intern/jobs", + "url": "https://zjtlcb.zhiye.com/intern/jobs" + } + ], + "value": "https://zjtlcb.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDK4zB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "浙江省产投集团有限公司2026年度实习生招聘公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8694f41f8401eeda5a78aa259c5a688761e7d1d3fadbb9685519cc71ad3e17cc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/e06ppjrFRs2mqHDk6j02gg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ff0e5c17e87694ac3e56955d62d022a3244ebf2b2ea438f7e19b86040177a138", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDfEUV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国航天科工二院二〇八所2026年暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e9ccb50ccc84cf6e5b775dc320679cc19e0aa2bbd64efc641b2365c4c25d9659", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PdUJ57klh0DVTLvki-ZVuQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "94f73c0d7b310193c8775c951993333ee6f3c4555dbf5f92e05fb6158f4b681f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rULgO8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "新浪&微博2027届算法实习生招募开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ffefc21ee431ce10532306dcba04f88a5bfea5c8aff7aa59fc09e59d8a19c8f1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rGnk0WArYAmYQEKAT8EiwA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c7459994452f069e3602eb450696ddb34ba7add7b9b01ca7ae0563d9b62149fb", + "text": "https://app.mokahr.com/campus-recruitment/sina/43536#/jobs?keyword=%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/sina/43536#/jobs?keyword=%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/sina/43536#/jobs?keyword=%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rT9Z8z", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "用友 | 解锁职场新可能!友智星2027届实习生计划正式启航" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778256000000", + "value": "2026-05-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad4926f9eb14ca02c7d3023e4e231955986030b0f746c251d28af59a8b3f4e50", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tLkutl3nt3zPZguwvUUgqg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52c7ed6a549090b5fe07c848413b34471e69b3f2da0dd0c05f8fab015bbb3452", + "text": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/posDetail.html?postId=698550cbbe908548be0f9620&postType=intern&sessionid=", + "url": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/posDetail.html?postId=698550cbbe908548be0f9620&postType=intern&sessionid=" + } + ], + "value": "https://career.yonyou.com/SU67ac41886202cc7916ae3029/pb/posDetail.html?postId=698550cbbe908548be0f9620&postType=intern&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rx78Zf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "凯捷校招 | 2027届校园招聘提前批重磅开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778169600000", + "value": "2026-05-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "沈阳/大连/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "36bac2fff3852f7ad6ff8920a1bb49ba8982fe00d657deb6ca29143780b90f0b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oQPz9Zy04DdUT76UhYk3hA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f8d8fe5cdada701e59a049227206d4928cf1165aa12308539c658d00a22db44d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhiqNK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "索迪斯2027届精英发展项目校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778169600000", + "value": "2026-05-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/杭州/南京/广州/深圳/苏州/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "460879d227ca695347a8c6fc77a5178a1120dfb17ff7606c29b644352a6e9bf2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-V8jae9KwOy0xv9NfURBvw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "99e771fa63579bcbf9a62716f099a879477d573d6d9cd4661806ef0a9aa28cd6", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rimhOA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "这个夏天,来知乎试试丨2027届暑期实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778169600000", + "value": "2026-05-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/成都/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8669933684e28bdc94c8490ed6dc1f44e6f54796416fcc173530675c9f73f956", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5zKqB5mNMfLbafMuRbpOMw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1ee3c2c726ea0adfafe84bae5b8cfabd967bb96f070eb3b399f1c23050ab9187", + "text": "https://app.mokahr.com/campus-recruitment/zhihu/68321#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/zhihu/68321#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/zhihu/68321#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r71LfK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "元初纳贤 | “元”动力实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778169600000", + "value": "2026-05-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bbdff25116b222ae11a2974b1914a39b1c36a29a15d95e87f8ac565bf4e274a1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/a2lv3kxod4LlllQXGN8B5Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3d889f86ab67f2c44de6482814f1a6ecb3a9730bca0eff957111211f0e9fcea5", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rokYc7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "峰岹科技海外留学生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778169600000", + "value": "2026-05-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/青岛/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "42812c19877c809c1ce74ce91a41462d2bba97d8675af70d29da221e15784019", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/U0UbhNTzhbekk9oNUDDqDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2ff4cdfc300e6bc72b49e64788cc13dd6d60388f2ab31f59800052998c1c12cf", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSnpU0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "碧迪医疗中国2026暑期实习生计划开启【含转正机会】" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778083200000", + "value": "2026-05-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/广州/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "989a31b682bcd30da839912aed31455146394c39e20e2c496dc421f3f8c000ec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Z3o518euGha5K2YVUamXZg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b950fbec5ac890c16895f2c06132454c74b069a2001690efb3a35f430c587164", + "text": "https://www.ajinga.com/recruiting/company/8501/job-list?aj_source=%20BD_WeChat&aj_code=Campus2026", + "url": "https://www.ajinga.com/recruiting/company/8501/job-list?aj_source=%20BD_WeChat&aj_code=Campus2026" + } + ], + "value": "https://www.ajinga.com/recruiting/company/8501/job-list?aj_source=%20BD_WeChat&aj_code=Campus2026" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcaxej", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 创新集团「2026年暑期实习招聘计划」" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778083200000", + "value": "2026-05-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8af0e348a16b0ca4f8d17a7368885151cc73c6396ee1c844d3706d810ad4550c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3MHlzdKeW7AgEv1TRmbDyg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "79cee4a582b17e34df9bc54ac2461763a2c6bb7a0d2568b4b2c5a161c7a5ab4d", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwdJhO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "人才招聘 | 德塔智能招募全职&实习生伙伴" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778083200000", + "value": "2026-05-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e8223f4dbeb9daac02dbe76e9072680064d828f78d81072d473a7634112caad7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CJcNW7eHgDRMMiyXeg5Pug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "22fd46fe650068a866e0708e220c21bbc2d4e840996efc18031492d19045d209", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rix3jb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星海图2027暑期实习招聘正式启动!拒绝螺丝钉,只为寻找与众不同的你" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1778083200000", + "value": "2026-05-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "adbb83baad5dc9d33f1174bd80555fcceaf5c6fb813904228aef23363e6a8057", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KV46JxJM7-bBarHljAymJg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0f871787e4e25c2027fed5c36dcb3493597a0655eeee1f06e80094d0006f2b7c", + "text": "https://galaxea.zhiye.com/intern/jobs", + "url": "https://galaxea.zhiye.com/intern/jobs" + } + ], + "value": "https://galaxea.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8iuXf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "东海基金2026届春季招聘暨2027届暑期实习" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c43f09257d85666d0b917a3784a302272fb6be1b68dc18c8d5bbbcaa2e78bc22", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XMlOlqmFU6fv3OaSP2eTNA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f3d0e249c5703be2f3c3f8543cbfc04ab916815105619a183e1168e73b4b36a", + "text": "https://wenjuanxingdenglu.wjx.cn/vm/YxEtWxe.aspx", + "url": "https://wenjuanxingdenglu.wjx.cn/vm/YxEtWxe.aspx" + } + ], + "value": "https://wenjuanxingdenglu.wjx.cn/vm/YxEtWxe.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5q9I4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国能建安徽院2026年暑期实习生及校招开放日活动招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9e2b922ae6fda706a5575d8d4806785d1d50c2354d20d03d4b4faf6a3c54c204", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/njOphf2SS3UD9YOAJVXvqQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a9e7d816e7f691aba1fae49465fe08996f8a9b4a9164575d93e8ecbe1c630177", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ4GlA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国科长三角资本2026年暑期实习生招聘来啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c5b5601b92570ee11b7193ec2528767a4eb4b72d408a5e71e43817a380088268", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7cHJtC40HIPLgbShWNdnTA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "36194fec629a0df5f3a8630e1884ba5fcd205ee9c1015301886bf1d4f574cb44", + "text": "https://n0kwkp76gi.jobs.feishu.cn/campus/position/list?spread=R17V84A", + "url": "https://n0kwkp76gi.jobs.feishu.cn/campus/position/list?spread=R17V84A" + } + ], + "value": "https://n0kwkp76gi.jobs.feishu.cn/campus/position/list?spread=R17V84A" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsOVBv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西北电力设计院2027届暑期实习及校招开放日公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9e1c70090989d68c1ea0086e4c0b9fea4609448c4334232839433e009c0ea8c2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/99KFD9ukyUuxEEmGT4zC1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ed5ce660b624ffd3aecb65fed6e257796af8a90541b4926c5a1ea83d046fdf27", + "text": "https://ideal.51job.com/xbyzp/campus.html", + "url": "https://ideal.51job.com/xbyzp/campus.html" + } + ], + "value": "https://ideal.51job.com/xbyzp/campus.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpydZb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年度麦斯达夫暑期实习生计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/苏州/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aaa69154a8fd1dd98f95217916e8da67b6b40416c8c094d25cba9f5b557fde5b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NYot4Go6BjUqrwVD8UjGxQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "666e811d39fc7f302f9eaf2de97addd9487acd95a8cfeb4306038cb66f161f60", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r48X2D", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "沃茨中国2026校园招聘官宣开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9d6fbcfd9b85c69d7363d1280775732b3319d1b0832e9c94ba67622cc0ba8412", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5e6aw1ItJyr712PFw2Y-FA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b17be550c1a26de9eb5945a29b463ca10f8556d82641532fafa635d1d0fc37a5", + "text": "https://campus.51job.com/watts2026/job.html", + "url": "https://campus.51job.com/watts2026/job.html" + } + ], + "value": "https://campus.51job.com/watts2026/job.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJHSpt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卓越新星计划|工银瑞信2026年暑期实习训练营" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dbb012be85c990a6c1ef2afd013f86bea52c9d4814fe19633def4ae004b3c852", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/d6H8EhBIoDgWXS1GbqAnOg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "db4295778bfb3968a158b6d8b989613293527d5fd2502ceeda2486212054facc", + "text": "https://icbcubs.hotjob.cn/", + "url": "https://icbcubs.hotjob.cn/" + } + ], + "value": "https://icbcubs.hotjob.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIHNab", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国金证券投资银行总部2026年暑期实习“金睿计划”火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f3ca64ffa7c1f6c7d8a11e1912d9de4bd5596253e69eb14589b98038045aadfa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fUNUKR9E_s760s7OaDDvVw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "72ac6b9ec25294696e3410822ffa0cc9de3564f7f6dbe86e5ee82138f5e68489", + "text": "http://career.gjzq.com.cn/jobs?activityGuid=b813b7ec-5cc1-413e-bc58-e7f35f646592", + "url": "http://career.gjzq.com.cn/jobs?activityGuid=b813b7ec-5cc1-413e-bc58-e7f35f646592" + } + ], + "value": "http://career.gjzq.com.cn/jobs?activityGuid=b813b7ec-5cc1-413e-bc58-e7f35f646592" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpdf6N", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年上银基金暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7d3a2305fad712c110ed60508c4ac8a402db5873f93abd7e637e96dee01cf6e2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/h7v-mbW7iB1JaYv6C9cOXA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ede4329e858804ee754e5c463f53622dff580075d1399a2ddedabc50be5ef8ed", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raQJCt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "富士医疗 | 实习offer速抢!2026实习生计划启动,解锁职场进阶密码" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "422c52a537d773893ef6551ab8ead9e33044c405b2e6f149dc94ececd701e29a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Wxd3lBuEgioWAguL2_kaVg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a647594bc24715e1d80a867522643979ef476761a7203538c87402e7db97e323", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpfXnV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "完美世界2026届春招及2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c2596a03cd8681cc6c3574e3a7eca2a7ae4945465508a64bb47253f5fdd92b41", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rBkX9sjjHwsb0S5YT4xo5g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9689f5642542272db838d1c47d959d71ede1fa8d2be187dee027d7537479b075", + "text": "https://jobs.games.wanmei.com/school.html?sessionid=", + "url": "https://jobs.games.wanmei.com/school.html?sessionid=" + } + ], + "value": "https://jobs.games.wanmei.com/school.html?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rV8sCr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "零跑汽车2027届校招实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6081b9625503b32b5926f5e46fbb9a58508d037bda2b64f324e7b76aa605a58e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mNRTi5TWBGaz30mY0_TALQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4abdc37acd86f54748b221e49ef0044a114d2df0db8f94a5a52e3a813c6a11d4", + "text": "https://leapmotor1.zhiye.com/intern/jobs?memory=%7B%7D&silence=1", + "url": "https://leapmotor1.zhiye.com/intern/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "https://leapmotor1.zhiye.com/intern/jobs?memory=%7B%7D&silence=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVPKgH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "夏日燃梦,驭见上乘 | 上汽乘用车2026年暑期实习项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/宁德/南京/郑州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "67351a0ddc1c3a1399a597e0d964ac39de955b82151a86cda24ab5f2b10886f6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VHuFEpIL2FuLPpQIYKFScw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ef2c34022167be4d1bedb5e577f1882343e154405310a562f830e2731016fecc", + "text": "https://smpv.zhiye.com/intern/jobs", + "url": "https://smpv.zhiye.com/intern/jobs" + } + ], + "value": "https://smpv.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXsr19", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【校招Last Call】戴尔科技暑期实习生项目,最后机会!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777910400000", + "value": "2026-05-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "29870a8fbe474e9d1c211a78dd244f59b32985c66d4657fe3e2067ef5f3c1df7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ZNA50iaZTykN39yUS82m0g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d4a4e74da4031094e7bc62bc7f779d892cfbd71fbc54d33ad9c418f29585de01", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzpLc2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卧安机器人「OneRo Star」实习生计划启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ac26b4938354bad47afba10e2c3fb019fb521c8fb90184d2a1978669a8fbe6c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PDoqOI7t4dJ92aRIfDSoUA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5ab1ef6149f8c794b9662028c5d139d36335a26706b5019dad2ebd3378354d6b", + "text": "https://woanhome.zhiye.com/intern/jobs?shareId=86d8ba75-2bc7-4456-acaf-a3a235dac6e4&shareSource=2", + "url": "https://woanhome.zhiye.com/intern/jobs?shareId=86d8ba75-2bc7-4456-acaf-a3a235dac6e4&shareSource=2" + } + ], + "value": "https://woanhome.zhiye.com/intern/jobs?shareId=86d8ba75-2bc7-4456-acaf-a3a235dac6e4&shareSource=2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rayq3r", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入我们!中国电建福建院2027届实习火热报名中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月14日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "福州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0c6b9d10ca3fd0f69d8f3295cb0d2b54bae2166b6a7c99d992a4424b6be83ed7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/jQl_WQYbA97dfiss--ushQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ffb1cea390cd631c20600debca88e6056e0fcc6ce29c4eea626fd10876f44fc0", + "text": "https://fedi.zhiye.com/intern/jobs", + "url": "https://fedi.zhiye.com/intern/jobs" + } + ], + "value": "https://fedi.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPrQIw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华钦校招 | 东亚银行校招项目,火热开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "eebc4dbd394f46c2325df4c2a241412cb73744294feba4607269654700a8b427", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g9XcTW5VjKWvNINglRvtng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1868c1af759d8b0cadd8085d770265baa0b7a40dfcaea243c0a08aae3fcef8da", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSClII", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北汽产投2026年实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f8c43a2b878ae1429e593a4696c6968867184014633dfa2f9f167d591fe8c823", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hJl5AePlWS3VARF963PQHw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9c18a7065ac18f41fc13052e8e83370e1a5e3aa9604a2d2715b1a2ca3be719c8", + "text": "https://baicgroup.zhiye.com/campus/jobs?queryId=bfc49d86-5dc2-47ba-b0ae-7d734d8319c0", + "url": "https://baicgroup.zhiye.com/campus/jobs?queryId=bfc49d86-5dc2-47ba-b0ae-7d734d8319c0" + } + ], + "value": "https://baicgroup.zhiye.com/campus/jobs?queryId=bfc49d86-5dc2-47ba-b0ae-7d734d8319c0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkeP6w", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "同启・芯程|知存科技2026年实习生招聘正式启动,全年可投" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州/上海/深圳/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f2393350b894ea02df0411c02d4846ee322e892a07a848801e430d3a51272cd7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BwYjrqaO1d9iB-ntD_ri4A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0d449b8c089cba78a0bcb4ca7fb6c01efac9438c055bd6848c038096952b7223", + "text": "https://iucylxooqp.jobs.feishu.cn/876677/?spread=GDA4WMK&sessionid=", + "url": "https://iucylxooqp.jobs.feishu.cn/876677/?spread=GDA4WMK&sessionid=" + } + ], + "value": "https://iucylxooqp.jobs.feishu.cn/876677/?spread=GDA4WMK&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rB6pJ5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "腾娱互动2026实习生招聘,全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/成都/上海/北京/武汉/大连/杭州/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0f6743ba1d2b2abccc941bc144183124df2c4c27342dbfdfce40d30ede054157", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cqKiQYmVl4YtSTI6biZHZQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "311c5d36acc4c1ab814caf4c15200e5b470a646852c1ce15c40b56e928b3984c", + "text": "https://zhaotalent-tenyu.ihr.tencent-cloud.com/campus/jobs", + "url": "https://zhaotalent-tenyu.ihr.tencent-cloud.com/campus/jobs" + } + ], + "value": "https://zhaotalent-tenyu.ihr.tencent-cloud.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1we1A", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国邮政储蓄银行2026年暑期实习生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e68552edd68f0556adbf78532fe87382cda14451217ca4f31d748dab362aa786", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8OMIcioIt_8MgWcQe-ufvg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "acadd6ee126877125c9ea5a436240ae80b7ae7b20f150a9afad090531123ba40", + "text": "https://psbctjsx.zhaopin.com/post/index.html", + "url": "https://psbctjsx.zhaopin.com/post/index.html" + } + ], + "value": "https://psbctjsx.zhaopin.com/post/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZEBAu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "令人心动的暑期生活丨北方国际2026年暑期实习招募计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777564800000", + "value": "2026-05-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c4e08f72b5909cdeacd80c200bdca886ffc06b29946b9e86eb146d77646774d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VaoljGIo1vt08_U3wmk5pQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d06386e054bc3c3b9aa08a884ab8d87feab395831d8229008a209118f26bb8d5", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvkZZk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "日立能源2026年暑期实习生招募正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "重庆/中山/北京/上海/厦门/大同/宿迁/西安/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bf58c14f10b7a031f65dad0ce6e7a05b97c4faa1b24d1431f58e1b902af102f0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EZ_5tOMXuDM3mljFV2cfhA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f3dc52a31da24e68fe37836459bc144b8886e1946ab215629149dfc0d8bef18", + "text": "https://hitachienergy.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=", + "url": "https://hitachienergy.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=" + } + ], + "value": "https://hitachienergy.zhiye.com/intern/jobs?memory=%7B%7D&silence=1&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgYOjg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星力量·启航计划 | 大华股份2027届转正实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/全国" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a3fcf6e96d1939b0ccf1aba647ce667b688c0bd61496c8ba184641491da40052", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Jow5GI-7e-RhhiwlCCl1Qg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1119347f79c00101632e0f2664506bbcbead6d687140e17ba88a223e0bb1d4e2", + "text": "https://job.dahuatech.com/#/SelfControl?id=16", + "url": "https://job.dahuatech.com/#/SelfControl?id=16" + } + ], + "value": "https://job.dahuatech.com/#/SelfControl?id=16" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqiSvj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "信梦想,创未来|中信证券总部2026年暑期日常实习全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月28日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "62fc8d77eb4927aab74667bdbf0a49bc4475f3e67cbb55aa895d5cc18aad1395", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KY_BeEV1bDwZ-4-P_hbdpg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "889696b135702b5672aa08d9730c73d184ee4d5ff0026c2310dfb513ece80ef3", + "text": "https://careers.citics.com/summer/interns?sessionid=", + "url": "https://careers.citics.com/summer/interns?sessionid=" + } + ], + "value": "https://careers.citics.com/summer/interns?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWD0ar", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广发证券广州分公司暑期训练营" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ec529e731e64f3eebb8ea9bceaf3296737ae6fb80a524741bdff8ea6956ebbde", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0YuwN5C8f5w6rRPA5lltiA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0b31e61e14ba82b17b54b49ca75cdca945b07271cff82e7c20556a28c8b5c36e", + "text": "https://wecruit.hotjob.cn/SU625527b10dcad4021443cdc6/mc/detail?postId=290601&recruitType=intern", + "url": "https://wecruit.hotjob.cn/SU625527b10dcad4021443cdc6/mc/detail?postId=290601&recruitType=intern" + } + ], + "value": "https://wecruit.hotjob.cn/SU625527b10dcad4021443cdc6/mc/detail?postId=290601&recruitType=intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKKNUK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "申万宏源集团及证券2027届暑期实习招募(校招提前批)正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月27日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1d0c6775c75fbdd3862111d04e8880027777c8a9cfccbf2ff201c129e0302d5b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4oNRgjUJZXOECTH7P1I-5A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e32883b4b660ffe197006dec0582052ecc5aede800bad3d2e31f964d13f72b68", + "text": "https://app.mokahr.com/campus-recruitment/swhysc-job/166086?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/swhysc-job/166086?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/swhysc-job/166086?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roKi2V", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "I WANT U!阿尔卑斯2027年校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "大连" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd62fa5f876851bd5f32eac82078885499fe63a31696eaf433ab34999e7103c5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ymJ7DRdQBlMMlsLi4c0dfg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "81ba6a4a5efebd1e3acedb23bf1d2be9b176fe35fe54d683f5bc47a61dcf5895", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3wnTh", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "浦银理财2027届暑期实习招聘丨五大岗位方向,期待你的加入" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "94a52bf641f509fd7c8ad97b74205c659de30b57f74bd6df229129b5963686f6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WTpYx165gbHCaKBGaLRNjg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "763b05a635c4113aeb960aa15daf0e8e0f3f486bb1d333235a7f20974f2e3d44", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfNCxO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "嘉懿萃私募2026暑期实习|参与真实投资研究与平台建设" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "68ba330b47640a4aca31803a230faa45ed0b6f5f5d304b7a8109a941a71e4ecc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/B-ka-CnF7joXJ6Q6833M1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1822d22e5c9b1156782ec2952b8cf6e1549aecf543856a070e43a18eadeeb184", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rp15FO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "FILA FUTURE实习训练营启动招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyr0YZ" + ], + "value": [ + "零售快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c440d488c23937c0bef34705f6e68e65daa7ab91dcbe7de6a0ba10301124fefe", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/L24sEiPElSPyGaoqUVo86g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27c203a58875ed3d416da6f7c717f545f4d84c9081b52b080a2fb2b0bbb61251", + "text": "https://app.mokahr.com/apply/antahr/140444?sourceToken=bbda3aabbd3a218083437c9d73a31764#/", + "url": "https://app.mokahr.com/apply/antahr/140444?sourceToken=bbda3aabbd3a218083437c9d73a31764#/" + } + ], + "value": "https://app.mokahr.com/apply/antahr/140444?sourceToken=bbda3aabbd3a218083437c9d73a31764#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rj528V", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杭州银行2027届“摘星计划”暑期实习生招聘暨校招提前批" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/浙江各地/北京/上海/深圳/南京/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8827f6bef342ede3c99bd1df64a763c756edfde5622d9e9a345581a28977950f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6nrla-q5n0F6IOVf8Q9jPg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 206 + }, + "key": "e96ffe4c81c05c4c1cd39456199b0c54ddcc08f352d2d9e3a30982e94e10c234", + "text": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate", + "url": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate" + } + ], + "value": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOQ1ng", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微众银行2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777305600000", + "value": "2026-04-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dbb4be04225fd8cb8e12a858e899eaf43a59e92597a7c060c5b345cd57192e8d", + "text": "点击查看", + "url": "https://app-tc.mokahr.com/campus-recruitment/webankhr/16056#/jobs?page=1&amp;anchorName=jobsList&amp;commitment%5B0%5D=%E5%AE%9E%E4%B9%A0" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bd220aebe03f40fac182f25e817dc30a5bca23f3431f40341718c3dac9b9b5af", + "text": "https://app-tc.mokahr.com/campus-recruitment/webankhr/16056#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0", + "url": "https://app-tc.mokahr.com/campus-recruitment/webankhr/16056#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0" + } + ], + "value": "https://app-tc.mokahr.com/campus-recruitment/webankhr/16056#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rilJAW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "理想汽车整车电动26届春招及实习热招岗位特辑" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f7649ba3ebf7a19cbdb61cb2ee8f7d62c3457a80033db0b52442496b28ca09b0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/daoPesbGSL65BahzkUU2Gw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4b6a22526876e32a9849c1b9b471e93dfe9fc13116a6e3392670431f9aec5c56", + "text": "https://www.lixiang.com/employ/campus.html?fromJob=1", + "url": "https://www.lixiang.com/employ/campus.html?fromJob=1" + } + ], + "value": "https://www.lixiang.com/employ/campus.html?fromJob=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5b8d7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "芯朋微 | 2026年优秀实习生计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/苏州/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "86bf17ed56d4c2c784c3f81003a7dc31a5d10c0c793d7bfcf7de77877e4255ba", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XPoECBpGViADNW8rj8Tnxw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "455fd93e1133f1dea919b75ea99c22d5da9d2084c637df80d668af02bcbfb2ac", + "text": "https://www.chipown.com.cn/cn/jobxylist/213.html", + "url": "https://www.chipown.com.cn/cn/jobxylist/213.html" + } + ], + "value": "https://www.chipown.com.cn/cn/jobxylist/213.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJTTaH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "高和资本实习生招聘启事" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bfb20cfe2adbabdf0154cf74ec3026a500aab9e8bbc403a18dfcd18a986ac8cf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/J_TBn9j9543gCuP_4lRHHQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c10761353d628876e11a309592207998afd6618a5f3dd8d20383ff090dc43c0f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg5VDV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招|迈瑞医疗2027届技能人才校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/武汉/南京/杭州/宿州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "75c505753084ae324f77c6ac64aef81edddb18f926a5e4ddf3e048e2fc18ffea", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/aJefHv8HF56DLlHoZIcBOg?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "c8d32851a5b5a8f3f345f686d27599f668a6143b43f853ec3282a2d73d887c5a", + "text": "https://jnrc.mindray.com/5/jobs?activityGuid=3a7a67e7-ad1b-4823-89eb-d96a9bea24f6&ActivityJumpPage=PortalPage", + "url": "https://jnrc.mindray.com/5/jobs?activityGuid=3a7a67e7-ad1b-4823-89eb-d96a9bea24f6&ActivityJumpPage=PortalPage" + } + ], + "value": "https://jnrc.mindray.com/5/jobs?activityGuid=3a7a67e7-ad1b-4823-89eb-d96a9bea24f6&ActivityJumpPage=PortalPage" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9dmnS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里星热爱之旅·阿里日特别版报名开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月28日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8c1136b19f1b9722a2874fd385e497fcd1e445829135229cedcf00f96defe4fc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RkOqx4hJm8Z1JLs_GKtTKw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7eab60d5923dfcca40af79b91f9c89f363c17be75e74212afa04b3884019d5aa", + "text": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fsurvey.alibaba.com%2Fapps%2Fzhiliao%2Fsa_nJgJ3x&action=appmsg_redirect&uin=NjMxMzEyMjA3&biz=MzUzNDc1MDg1Ng==&mid=2247502646&idx=1&type=2&scene=0", + "url": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fsurvey.alibaba.com%2Fapps%2Fzhiliao%2Fsa_nJgJ3x&action=appmsg_redirect&uin=NjMxMzEyMjA3&biz=MzUzNDc1MDg1Ng==&mid=2247502646&idx=1&type=2&scene=0" + } + ], + "value": "https://mp.weixinbridge.com/mp/wapredirect?url=https%3A%2F%2Fsurvey.alibaba.com%2Fapps%2Fzhiliao%2Fsa_nJgJ3x&action=appmsg_redirect&uin=NjMxMzEyMjA3&biz=MzUzNDc1MDg1Ng==&mid=2247502646&idx=1&type=2&scene=0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rM4pfP", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国防面对面 航空新航行丨航空工业新航2027届硕博夏令营活动正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月7日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "新乡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4adcde1c85376275f7879f26af06a1cbc67a4e883702ac778cb33f30b0a1977a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wJKwgYQHnXH_DWM2POrVkw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6eb7fc1a731ca1ed4d954d111decadecb611e49d78ca8da38de04987cb76595a", + "text": "https://v.wjx.cn/vm/Q1n1EwH.aspx", + "url": "https://v.wjx.cn/vm/Q1n1EwH.aspx" + } + ], + "value": "https://v.wjx.cn/vm/Q1n1EwH.aspx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwRGef", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻找闪闪发光的你|国元证券2026年买方投资顾问实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777219200000", + "value": "2026-04-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5e8b52191560ff01c695a01b3c42a53763adc1363050742fd197bf305196a303", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YkZFAOKLyTq5bMw7Ed8-_w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "82c3a6de94a3aa911fd70e0e60c8ed98641afc727dc395a58f81df62843e9c87", + "text": "https://gyzq.zhiye.com/intern/jobs", + "url": "https://gyzq.zhiye.com/intern/jobs" + } + ], + "value": "https://gyzq.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rylrTE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "三一集团2027届校园招聘提前批正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777046400000", + "value": "2026-04-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQOcnB" + ], + "value": [ + "机械装备" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/长沙/上海/昆山/西安/沈阳/珠海/宁乡/湖州/杭州/成都/重庆/常熟/株洲/益阳/邵阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "685f8e0a8b1d3ef8ed4bcaaa160140affb6ca67e174bee10c82f908b90281c0e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/zO2fwt48p_qmDObOKriRVw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ab1230537a91b9fdab2d263f88f8d26a6f703ddea007e1c87f7c223f89f33446", + "text": "https://sany.zhiye.com/campus/jobs", + "url": "https://sany.zhiye.com/campus/jobs" + } + ], + "value": "https://sany.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgjI0K", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "遇见国金,预见未来|国金证券2026年暑期实习暨2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777046400000", + "value": "2026-04-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/成都/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ba25b913066927aec77ba73290367b83f9c5d69e069f4deb12c8af7b0b7b538c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lCtRkaIzm1rjlSP-4GBhng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bc7b4bcb6ff9d6002aea439f0ae4361bbe6f703ed5e2be50f0a9d5be8200d0b3", + "text": "http://career.gjzq.com.cn/jobs?activityGuid=765e3ac5-b1fb-4026-b135-0cffa91d0ded", + "url": "http://career.gjzq.com.cn/jobs?activityGuid=765e3ac5-b1fb-4026-b135-0cffa91d0ded" + } + ], + "value": "http://career.gjzq.com.cn/jobs?activityGuid=765e3ac5-b1fb-4026-b135-0cffa91d0ded" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCyMwd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 卓识基金2026暑期招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777046400000", + "value": "2026-04-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "05aa3d058a9f19e9e40897e6d875f636db96fa9ab2b0c41c91e5e95ac0695aff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vpmAhstGqxh8xveQQ7h40w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3af1161d5c75c9c3bac66cbe1158e252dfa35992f0447e8500a8b661bd1e1bc0", + "text": "https://app.mokahr.com/campus-recruitment/zsquant/36544?sourceToken=dfd9e66c26cd84e3b501d448fe4a525c#/", + "url": "https://app.mokahr.com/campus-recruitment/zsquant/36544?sourceToken=dfd9e66c26cd84e3b501d448fe4a525c#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/zsquant/36544?sourceToken=dfd9e66c26cd84e3b501d448fe4a525c#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcfwTc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "歌尔丹拿|2027届校园招聘实习生计划启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1777046400000", + "value": "2026-04-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/苏州/南京/深圳/长春/青岛/潍坊/全国海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d71200d4493335d22ffdada6326055ce3d9ebf22a1b5f353ac1a37665c6f1660", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5QdQMVYzlw3vRjBE3OBRRw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7ab50fbe5c8fbd08f8a74ae4bc9dee1205c89d5e9a25bf2bfa7e305ac47f078e", + "text": "https://k13pqewe7i.jobs.feishu.cn/641372/?spread=K38FMZW", + "url": "https://k13pqewe7i.jobs.feishu.cn/641372/?spread=K38FMZW" + } + ], + "value": "https://k13pqewe7i.jobs.feishu.cn/641372/?spread=K38FMZW" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxECwl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期实习招募啦,宁波机场“雏雁计划”等你来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月11日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "81412d1de624b7988db1bbf5969a75e47c7a00bf57c54aeaef1a070844df86dc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uogGI3ycUPfCT1qSKAAc_g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "fa4066298db69c9eae82cc71c68a4f2c3a10ac2939e66e73d342125ae2fd9dc2", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYa1ZX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期实习 | 2026罗氏制药中国商业暑期实习生项目网申开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州/广州/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9992c574cd348cf3da44dbcca2700a91eecbb568e7608227310f5ce65978129f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/i6QpyIlzyyS_GB3F7FmS4g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0e7e902a44602cf4f6167adeaafa77428fa4de9df0bb01e81710d9502f1f5a10", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raCPL9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "定义未来,从芯开始 | 英特尔中国实习生招聘火热启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "66319966443634a9dfaa63fc03f5e08cb176b9f4cb5575243d520e35112a362a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/68QkZqJ0IegiUu_4sclRzQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "918f0a69d9f762cb83c6cf33d7541b87824de871bbda4284f0d4c88e1cb74c15", + "text": "https://chinacampus.jobs.intel.cn/intel/position/index?recruitmentType=INTERNSHIPRECRUITMENT", + "url": "https://chinacampus.jobs.intel.cn/intel/position/index?recruitmentType=INTERNSHIPRECRUITMENT" + } + ], + "value": "https://chinacampus.jobs.intel.cn/intel/position/index?recruitmentType=INTERNSHIPRECRUITMENT" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxGycL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海尔消金2027届春季校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ef952dd8de888b9a1ce8e838807cfc58e0fe0ea6536e5575a14fe9bd9aaeb12c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sTqiCoK-P3mOsyZ3pdovEg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bd0ae1f7f47fc701c5e8f09f9d5a6f3623ac4bf0d3ede4476d4b0a8a94dc8ad8", + "text": "https://haiercash.zhiye.com/campus/jobs", + "url": "https://haiercash.zhiye.com/campus/jobs" + } + ], + "value": "https://haiercash.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtdPsg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长沙银行2026春季校园招聘&暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙/张家界/娄底/常德/广州/邵阳/永州/怀化/湘潭" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6f6b750b5cac82bc25c7db848d1dee3aa03306b8339cad86f5ecd099b5300e7b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oD_R8vGnS95Kr_dixxjbnQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "43f873578c5e833535605a6342ead6090d50452b19c1dc6c4e17b5b79a2edb45", + "text": "https://cscb.zhiye.com/intern/jobs", + "url": "https://cscb.zhiye.com/intern/jobs" + } + ], + "value": "https://cscb.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvFHAJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "大神请查收\"芯\"动Offer!九天睿芯实习招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776960000000", + "value": "2026-04-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e971787ba4eb54996e97d87d61a5a1e0f96e7fb6e8c0f26fc6fb95fa6c5ac7f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ycS9igzxoGzgQ09BdXcK1A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9ad8030988f1109fb4bc2940c9fd49ef74d76c8a373d3d04794743acff0a5d73", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9VmTN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "安徽康明斯 | 2027春季校园实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776873600000", + "value": "2026-04-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oXER6i" + ], + "value": [ + "中外合资" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "384739eac223c460f4b0c41d1ea8c6e805bd3906098b981764058dcb046fc67b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0a0LmwixpCTMpqBhU1kH7Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cbe6de613ea8cf65c936938d2ba9321bf6378c9e8dce61388703e220d661c7f6", + "text": "https://acpl-cummins.zhiye.com/jobs", + "url": "https://acpl-cummins.zhiye.com/jobs" + } + ], + "value": "https://acpl-cummins.zhiye.com/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roLX22", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园 | 依梦同行,振翅高飞,依科赛生物2026校招“实习生”计划启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776873600000", + "value": "2026-04-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/香港/蒙德维利亚等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0eb131f2ac22ac0e6cecebbbfb00d71db179c7e22128d08681bfccba729bce2d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yjYi_CEikKHIIZVmtDq1PA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f678c2f94c8a845c816e89861e09815984c11955a5a172c965dde30e3d6519ec", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4dm93", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "三棵树2027届实习生招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776873600000", + "value": "2026-04-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oAmle2" + ], + "value": [ + "快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b9d679a78907c5330800a0403fec178588659ac9dbff6a7577ebc3e09da85ad3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RZ6iOVs69eCt9cgEhD0Lfw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b3493c4f514c15f53390e71d37a4ca4bb9d49c91a0d69b22b567270e6e9955dc", + "text": "https://3treesgroup.zhaopin.com/jobs1/index.html?iten=four&sessionid=", + "url": "https://3treesgroup.zhaopin.com/jobs1/index.html?iten=four&sessionid=" + } + ], + "value": "https://3treesgroup.zhaopin.com/jobs1/index.html?iten=four&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCpFFn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中信保诚基金2027届校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776873600000", + "value": "2026-04-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5c141a45031fc3095206ba4e51bcbadfaf4d06fc363b9ca26ebbce81631c6aab", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Dwsd_XPOnCPejR4sGzs9QQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "eb61ed1bd9c7d70f03cd7dca3f2c40c6ba69b5baaed19184eb5590feec9f0f6e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOXJ3n", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "复宏汉霖「AI Future Lab」2026实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776873600000", + "value": "2026-04-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6d3747cac7204cdde47d4f8d46aeccdc97620b05bae6a8a0ee21b0b78767b1bc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/foPKhZdYbQhF8HtGPAsU6A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e7e6964b5e8a6c980682c8ba6338897236dc7cbbfabd6b40de26e97ca661b61c", + "text": "https://henlius.zhiye.com/campus/jobs?queryId=5892d5d6-06b3-4662-bf2a-2165653c2996", + "url": "https://henlius.zhiye.com/campus/jobs?queryId=5892d5d6-06b3-4662-bf2a-2165653c2996" + } + ], + "value": "https://henlius.zhiye.com/campus/jobs?queryId=5892d5d6-06b3-4662-bf2a-2165653c2996" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rM2lJC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "贝诺Benoy 2026 暑期实习计划招募正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776787200000", + "value": "2026-04-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月9日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7aab4efd40801996fffa0897f69fcae549fbdaeefcf993384cc52075dc48749a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/z4VcaagpvtScI_WfG-SQjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3e6d1213083767b18e6661e69a7e244486da19fb438e6be22afa28f39bbd6447", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYjtW4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万物云校招科技岗补录 | 最后一波offer等你拿!(暑期实习同步开放)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776787200000", + "value": "2026-04-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oFN2i8" + ], + "value": [ + "物业服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/深圳/福州/武汉/泉州/厦门/漳州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a7682bb5df6c588ab70cfbd167bec87f74576a91604a81d56606b017d436d750", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/v1CMyvl2nhbNSfEBS73hYg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "df6ee938b4014916d8a224ff8e2a88f4215714e077904a05ed646702c8d09b1f", + "text": "https://app.mokahr.com/campus-recruitment/vanke/147055?locale=zh-CN#/jobs?&zhineng%5B0%5D=237497", + "url": "https://app.mokahr.com/campus-recruitment/vanke/147055?locale=zh-CN#/jobs?&zhineng%5B0%5D=237497" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/vanke/147055?locale=zh-CN#/jobs?&zhineng%5B0%5D=237497" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6kcR8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "睿兴投资实习招聘|多岗位" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776787200000", + "value": "2026-04-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0ae63b9ce2e5234bbeebb5c91edc8100ab46905f702f6b819e57d84f793583d0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/jqxzBHvBnIxlu-SEysAIIA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8a14cc2639fa4d2ebc0db08b23dd2c32627229080132f10ba4a1b5119fe17685", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rqezL4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 欧普照明27届实习生招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0a38329556b5c748211e8dcbc014a231bf94b32f66ceb6c9bd87d55e9ab5abde", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rQVzVfl4FJ8tj74yI8YLuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4d9cbe44ab65b5175231428a491809b5ca1aff889e03a3a2246724d978cd6d3e", + "text": "https://wecruit.hotjob.cn/SU646ed9920dcad45af14821b4/mc/position/intern", + "url": "https://wecruit.hotjob.cn/SU646ed9920dcad45af14821b4/mc/position/intern" + } + ], + "value": "https://wecruit.hotjob.cn/SU646ed9920dcad45af14821b4/mc/position/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlz0r9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南瑞继保2027届实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b994360758d9878386808a9cb1e51b06ed55157ca07aa332b75e8a705cb4e3e5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/88Z11Dh-UxDL-CBZMzBxtg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "44b8ed5430c2b42a6c45a888a924e71f17c949550240aae06b2b2fbbcce82535", + "text": "https://nrec.zhiye.com/intern", + "url": "https://nrec.zhiye.com/intern" + } + ], + "value": "https://nrec.zhiye.com/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUlfEE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "银行间市场清算所股份有限公司2026年度实习生招募公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月8日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fac20992cc03675a2f7543f19cc604b172c08ac5d6712e3f1ea64bf70fed9f3c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7BuQdBAjY5xgtn15p12qjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 403 + }, + "key": "31d015eb226caaa44d8cee3ba64feb8a7bf36b62319d105bed3bc372ab6ed882", + "text": "https://www.shclearing.com.cn/career/client/period/postList", + "url": "https://www.shclearing.com.cn/career/client/period/postList" + } + ], + "value": "https://www.shclearing.com.cn/career/client/period/postList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnPIHX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商基金2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "da8699605aaa3d80365c05595bab6e737303758d3b6c23356129fe186594f114", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sRdgzeV9F-AA1vdOGwt-IA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "42bbe106c1147d93c42f3889a16e2d61e1c458398dfc2c03ca33f6a065907433", + "text": "https://cmfchina.zhiye.com/campus/jobs", + "url": "https://cmfchina.zhiye.com/campus/jobs" + } + ], + "value": "https://cmfchina.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9hSdq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海外校招|长鑫日本2027校园招聘正式启幕" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "日本" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ebba5a870b73ff90613c39afbc95370392de470bf1de1d0da31fdf1bd1e32661", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yedjXFUzxakHJh22lBjeuA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1ba19eeab52fada0a5fced7c6323e1077ff1e3a422967987b90afe7712fdf972", + "text": "https://cxmt.zhiye.com/campus/jobs", + "url": "https://cxmt.zhiye.com/campus/jobs" + } + ], + "value": "https://cxmt.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryxujU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Peet's第二届暑期实习项目火热招聘中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776700800000", + "value": "2026-04-21" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aab22b1cd8c4aaea480f5813e3a454342129b96f50ec4d862f04280368288e92", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QVcS1uMUIG6TXgCk3XGxwA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b4b616fbf6449a126478e8191417016bb0b72568f8f3479d08ee1868167326a5", + "text": "https://app.mokahr.com/campus-recruitment/peets/118888/#/jobs?keyword=%E6%9A%91%E6%9C%9F%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/peets/118888/#/jobs?keyword=%E6%9A%91%E6%9C%9F%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/peets/118888/#/jobs?keyword=%E6%9A%91%E6%9C%9F%E5%AE%9E%E4%B9%A0%E7%94%9F&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgZpzb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中豫具身智能实验室2026年度招聘实习人员公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776614400000", + "value": "2026-04-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月19日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "郑州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56719d876edaabb577915c5f2c04662f71f8df061f3783d2c65452b58f0d99dc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hlPx-pBe8ZEedPUvTpUTag" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7c1a7351ce8663dd64399ec51cf00c2111a4422b7c790bd767e58b3036c5bac7", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLPobz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杭州机场“青苗计划”2026年暑期实习,开启招募!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776614400000", + "value": "2026-04-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4ab85a725b814d46a79c86acff69b13f3a44c172cada6f77eb76c39a967598f7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CnZcKIcDCesw3i3DjD1DTg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea7bca7a101769f6b18000ac5466a882b0a20481bfa5c2993546d35e68ed8222", + "text": "https://www.hzairport.com/talent/index.html", + "url": "https://www.hzairport.com/talent/index.html" + } + ], + "value": "https://www.hzairport.com/talent/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhEPXE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国机重装2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "德阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "44c4749256909671a6cbb40ac048146d10f994a503ad59c4faee5b5b2ab2b792", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lAMLlxfMldOk8iTJox_BYA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2d447e1b78f26f5d65fd0ca4d0b8824c26787adee0923d15f4296f783864309d", + "text": "https://wecruit.hotjob.cn/SU66c1ffa81eb8054b1a691126/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU66c1ffa81eb8054b1a691126/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU66c1ffa81eb8054b1a691126/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwCT4D", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "逐梦平安,胜券在握|平安证券2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "553107ecac6ce3686f86aae57d44a24ca29c6916ffbc03758789a4b63749739f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vBv6wuEcj3J2Lb2J2voXcw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "19a41c8dede0d1983f638cdd7bf4683d3ace3851061c6911fdeb794abf7c6839", + "text": "https://campus.pingan.com/securities/position", + "url": "https://campus.pingan.com/securities/position" + } + ], + "value": "https://campus.pingan.com/securities/position" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcCXeB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "美图2026暑期实习生招募启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/北京/深圳/悉尼" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56739caee619554241aa066715bd5278860c59c7a158ccaa8757e3da24519c63", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RHbANxYZW7yh7zbuN7Qi1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65fafd005ac7dd57e5cc97c5d1455a1699bb4d1cc21afa20ddba4b99b0ec004c", + "text": "https://hr.meitu.com/?page=1&recruitmentType=campus", + "url": "https://hr.meitu.com/?page=1&recruitmentType=campus" + } + ], + "value": "https://hr.meitu.com/?page=1&recruitmentType=campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKjmq5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 上汽通用&泛亚2027届校招提前批暨暑期实习招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c2e9cac7f952c7325dc0a75b51eb01a17962f3b1c4f57ef6e3c63dde631e95fe", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FuI5uAXBkw7113tyO86VBg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d3bb906632c8c2ff1486f56b3b9df48c5077295585128df33d9acc88eaca4ad0", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r42B7l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "理想汽车基座模型“理想星”顶尖实习计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2b0b30e88384bf89eb5356abc4c68282b76aeca431c7d134aff663a3d5810397", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Kjewd1QYeNKRsBptuLE2sw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9d4047a800d6343f47c5d716c845b1f946a875eac1d19c997af0fdff5dc5d3e1", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ3JWD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招募 | 伍尔特集团实习生招募——不负青春热忱,共“伍”精彩明天" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/嘉兴" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fbe15fcfb6a67ac333262c4b89f9f8870e7c43169f421ec28f8b1ddbd50748db", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-HJxUCrv1PZCpnXnfl889A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3fbfbf1e7d866baefb54a43f8dddec22d0e077134073cfacf51d4d162c5f033d", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHiZPs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "岗位上新!德州仪器成都制造基地技术员实习岗位放大“招”" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "12607b27b3a290145dfd373c5a3c12ef14b6620965add4e8ba9692eddf3a57fa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4E139Rilqi6XYu_IGUDygg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9141c929217d11f168fd7d18e4bcfcbe7d5f19219f14a2786ad4d232f40f36a6", + "text": "https://app.mokahr.com/campus-recruitment/ti/142216?sourceToken=eefdb1eba1f0993c5d827fafc1a8e0e8#/jobs?department%5B0%5D=3770252", + "url": "https://app.mokahr.com/campus-recruitment/ti/142216?sourceToken=eefdb1eba1f0993c5d827fafc1a8e0e8#/jobs?department%5B0%5D=3770252" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ti/142216?sourceToken=eefdb1eba1f0993c5d827fafc1a8e0e8#/jobs?department%5B0%5D=3770252" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVJL1X", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "圣湘生物 2027届实习生校园招聘全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776441600000", + "value": "2026-04-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cb92b8428fb497ff0928eab2fc6db3fd5cb51e3a93396bebe0d81e7ebd0ea4e2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SNHOx7jOxiaVT1ThnbC2GA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "47a58c4e44e7c3e18d3ffdb5c229278b325c5d7861cc770fd56c51d6d5f8952a", + "text": "https://sansurehr.zhiye.com/campus/jobs?2=%5B%7B%22id%22%3A%222%22%2C%22label%22%3A%22%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98%22%7D%5D", + "url": "https://sansurehr.zhiye.com/campus/jobs?2=%5B%7B%22id%22%3A%222%22%2C%22label%22%3A%22%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98%22%7D%5D" + } + ], + "value": "https://sansurehr.zhiye.com/campus/jobs?2=%5B%7B%22id%22%3A%222%22%2C%22label%22%3A%22%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98%22%7D%5D" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxOXG4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "英科医疗|2027届校招提前批 实习生转正通道开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776355200000", + "value": "2026-04-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛/淄博/济南/潍坊/镇江/淮北/九江/上海等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "277792d49a4d30ab759c272a792d30dc0e54baaea4abb980c2256fbfc75c646d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TjhaEWpOB563thqslWikgQ?scene=1&click_id=11" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5cba58289f8f28fd6c9a980d3f7ca5ca002dbbcb9d6569e3a89f31c40313119f", + "text": "https://global-intco.jobs.feishu.cn/840753/position/list?keywords=&category=&location=&project=7628790840907237641&functionCategory=&job_hot_flag=&tag=&store=&storeFrontListString=&type=&sessionid=", + "url": "https://global-intco.jobs.feishu.cn/840753/position/list?keywords=&category=&location=&project=7628790840907237641&functionCategory=&job_hot_flag=&tag=&store=&storeFrontListString=&type=&sessionid=" + } + ], + "value": "https://global-intco.jobs.feishu.cn/840753/position/list?keywords=&category=&location=&project=7628790840907237641&functionCategory=&job_hot_flag=&tag=&store=&storeFrontListString=&type=&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPcYVm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "热联集团暑期实习生招募启动啦" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776355200000", + "value": "2026-04-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "112d95723ace5912993399e37ad497251c4774a545a2f1dee0abe7772a349b42", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pZBdjejSjAO9Adry4DAtcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8bf01270bc7a2911a2dd272e765b555f6d5cbb61b9d4e1b127f1a8341cd79f45", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKZ7lX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "暑期实习启动 | 来延锋,过一个有收获的夏天" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776355200000", + "value": "2026-04-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQbSuH" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65218d58dff160f30632356ff2e33dd1bd12e52f564eb387fcf2409925c4bd4d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Aw5EFxmefS1u4M0dIzdpuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1dd35265d1fcc6c464af223ce56269aafee4408c4b3695a81324b5d3cbeee599", + "text": "https://app.mokahr.com/campus-recruitment/yanfeng/45086?sessionid=#/", + "url": "https://app.mokahr.com/campus-recruitment/yanfeng/45086?sessionid=#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/yanfeng/45086?sessionid=#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWITu2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026杜邦公司暑期实习招募|真实项目历练,优先留用通道开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776355200000", + "value": "2026-04-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/宁波/湖州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad75308392f248723980e627ab09cb2894239a71c55639431f490559a9afe4af", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5e3-j_d3m5vv98_X85JkDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "296cefec3368ba5f80d297077cc6c728ebbb144458ee7b219c4518e252d8bc9f", + "text": "https://dupont.wd5.myworkdayjobs.com/zh-CN/Jobs/job/Qingpu-Shanghai/Manufacturing-and-Engineering-Development-Internship_248503W", + "url": "https://dupont.wd5.myworkdayjobs.com/zh-CN/Jobs/job/Qingpu-Shanghai/Manufacturing-and-Engineering-Development-Internship_248503W" + } + ], + "value": "https://dupont.wd5.myworkdayjobs.com/zh-CN/Jobs/job/Qingpu-Shanghai/Manufacturing-and-Engineering-Development-Internship_248503W" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrm4Y8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Ratingdog(YY评级)2027届春季/日常招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776355200000", + "value": "2026-04-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4f363baffdcedd23f9612851aadf304e840666822f69c09ffc3d30288b4b6467", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LwI9A4Ja--FolRrTXAfyzw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9e6d091c0b80ad1abf6eab7f819e35f609f0ed840ef3fd0ad90279e1b0f84d2b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNDsx0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "InnoVen中国实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d72bf37400173729e4c0abea06cec63195209f4ef75b69702bafe4d7264d9b44", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OoaujIJXL_OkWPLAGqs6oQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "77194fb347afa7cc94549afeafee7bf5a483e3c8d23c61c7bcb3963809ba8d95", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rim1xZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杭州银行总行信息技术部2027届摘星计划暑期实习生招聘暨校招提前批" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fa92a8ebe9546ae1e7d47695698ef5361146508bb47d1510f52fbda126e1eddd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/l6eL3XRucqAachCXVtc2RQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 206 + }, + "key": "9f697b4793a28432aa34dde05b4b7c6a1fa725104bd29ca939f98ce9ff2be7fd", + "text": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate", + "url": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate" + } + ], + "value": "https://myjob.hzbank.com.cn/hzzp-apply-web/static/index.html#/employ/ungraduate" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWLSe7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "一个暑假拿下秋招 Offer|积加科技暑期实习启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5900df6f16d27642f06ae917b3811b85aa2d79dd4b92636a9835fbc885fc2aec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mLzypWeXUwE7exb7PhbTlQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "48c06e5176d3369f43d392feeff140683c76b4228f444c629b8f5df84d4a2af7", + "text": "https://a4x-paas.jobs.feishu.cn/500117/position/list?keywords=&category=&location=&project=7620724248252762374&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://a4x-paas.jobs.feishu.cn/500117/position/list?keywords=&category=&location=&project=7620724248252762374&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://a4x-paas.jobs.feishu.cn/500117/position/list?keywords=&category=&location=&project=7620724248252762374&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKmggA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Akuna Capital 2026 暑期实习招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fb7e4b4e1ade905d8b7884a9d508ff4c8e3ee8be1276e32b9f0f3f46b7be1fd1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gnpT9Qb8qMwM437KAxwJXg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8b43de8faab44c07af5ad32b70714deffbe9543566975641b0bd5c121d5cd469", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpDyWK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "「敢上场·就非凡」丹纳赫旗下Cytiva2026暑期实习开启招募!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/杭州/广州/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "918c54684833bf1d1df7760328f75223858bc9cfc5a8b48fbd36459251ead116", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/T5M_GepuyWEgbneATQXCQg?scene=1&click_id=7" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a85a759dfe67fd49f8b7678f16702e4c548ab33bdf419a84df924a845febb9dc", + "text": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9289406", + "url": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9289406" + } + ], + "value": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9289406" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPatsE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中欧瑞博2026暑期实习生招聘,寻找未来合伙人!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0085125b879c4580312cf30be105289f793c22aaca046ef580ae3722986a4ba0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0A9Wsn8DGJybdEwUVSVsAA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b3da5a6351338d3899182512d7821be0b7ac8da89ff637e5814eb24af7b550ed", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrbuMN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "滴滴未来精英27届全球顶尖人才招募开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ba8f0a6f0e593efed125896e70b1c3532b12188974c19c99f067a59ee6283ef5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9Dlci95pHXAsvbKGL3DV3A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "51960ca6a32699b1d7360df2ebd3fdd127366404d71b76d411b7632f99dd0723", + "text": "https://app.mokahr.com/campus-recruitment/didiglobal/116021?sessionid=#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/didiglobal/116021?sessionid=#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/didiglobal/116021?sessionid=#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCUZJx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "庭宇2027秋储实习生校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5bf52a53402c89b2e4697765baaf9411efde63c3488d72a5d01e7fcb8bb84026", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BepEg1frSkvEnJ3uRECWZg?scene=1&click_id=11" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "e5a8e08f320ead1466bc2aa733ad75b286b2d3f39c9f020f2cafcecee12892bf", + "text": "https://tingyutech.feishu.cn/share/base/form/shrcnDFNetApZ3Oh7CFfH014Yje", + "url": "https://tingyutech.feishu.cn/share/base/form/shrcnDFNetApZ3Oh7CFfH014Yje" + } + ], + "value": "https://tingyutech.feishu.cn/share/base/form/shrcnDFNetApZ3Oh7CFfH014Yje" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rL1FZr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "英科再生实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776268800000", + "value": "2026-04-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "淄博" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "70c2ed91eabfaaff2ac30a1a24ef4bcddb5e249dcb6f4db57657f37d0fce44f2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/d5ulkJBg2bYC98rYKdanOQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a01b2b2766e87e95d9cd4adc4c49cbb4f5d96af747f94b767437408fd24e5f03", + "text": "https://global-intco.jobs.feishu.cn/251907/position/list?keywords=2027%E5%B1%8A%E5%AE%9E%E4%B9%A0&category=&location=&project=7269594971869563196&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://global-intco.jobs.feishu.cn/251907/position/list?keywords=2027%E5%B1%8A%E5%AE%9E%E4%B9%A0&category=&location=&project=7269594971869563196&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://global-intco.jobs.feishu.cn/251907/position/list?keywords=2027%E5%B1%8A%E5%AE%9E%E4%B9%A0&category=&location=&project=7269594971869563196&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFEkr5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "远景智能2027届校招实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776182400000", + "value": "2026-04-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9652b583b8dc3b6a9845cc9ef2ed619dd5bc09847bb5e3e815ff539181678deb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g-L3z2vvBk-wlActDhPwYg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "53f177045c3ed5f1e79dbb0f3bdeaa928d8e966fee4f0778199306bb6ae0396e", + "text": "https://app.mokahr.com/m/campus_apply/envisiongroup/43123?recommendCode=DS9TDqgg&hash=%23%2Fjobs", + "url": "https://app.mokahr.com/m/campus_apply/envisiongroup/43123?recommendCode=DS9TDqgg&hash=%23%2Fjobs" + } + ], + "value": "https://app.mokahr.com/m/campus_apply/envisiongroup/43123?recommendCode=DS9TDqgg&hash=%23%2Fjobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmMlBE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "共翔蓝天|航空工业一飞院2026年实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776182400000", + "value": "2026-04-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月22日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3ff4c80bf0a3e981b389a56823b9dae7c824bbf5a65f3c004ac3f39f00fd7b8d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6VEP5JyBc58SP1rabqOvzQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1fe48940a3ffb47b683af4841337924c4f7f22899610bd5f4839087df79edad0", + "text": "https://yfytalent.zhiye.com", + "url": "https://yfytalent.zhiye.com" + } + ], + "value": "https://yfytalent.zhiye.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfkqAk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "东风汽车 | 2027届实习生招聘正式启动,与你“奕”起更精彩" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776182400000", + "value": "2026-04-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9d5d209acde5951189cb1ac957aad8c4ebe87d2baaa884f12cf2f9e6eb8e1b51", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yT2qur9Y4MmF69dxe7-lHg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2dfbd2315c7964de930f264dcf6cc06341511fc059476580e11607c7fc4cff54", + "text": "https://dfmc.hotjob.cn/SU68afaf376c88b20bfe6238e3/mc/position/campus?projectCode=210401&showProjectBanner=true", + "url": "https://dfmc.hotjob.cn/SU68afaf376c88b20bfe6238e3/mc/position/campus?projectCode=210401&showProjectBanner=true" + } + ], + "value": "https://dfmc.hotjob.cn/SU68afaf376c88b20bfe6238e3/mc/position/campus?projectCode=210401&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rn5rO1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Sharpa2027届暑期实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776182400000", + "value": "2026-04-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0e7da2aa9b84e5f4ef6df129de9b2fcbbe345cd70f092cf9e94e3fe44673a70a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TQM1VUYBsEG4lKGPLKCnoQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1d162b3ac146792c22db24b0b9cc6adb56e75bc1a5218a138c8ee2e43879a696", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rttCpb", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 公牛集团2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776009600000", + "value": "2026-04-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波/上海/深圳/惠州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "642eb4a1ea6f0766e2a9abe7e933f941f8fef37323f19dbec97f821403bcef66", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/KhpVl4WZSZH-KOgEslfxSA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2e478a82241499da8e7c943f15231260f5177a6b0bd4d506839213692afe4670", + "text": "https://gongniu.zhiye.com/intern/jobs", + "url": "https://gongniu.zhiye.com/intern/jobs" + } + ], + "value": "https://gongniu.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0YSjd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "源梦计划丨开源证券研究所2026暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776009600000", + "value": "2026-04-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a07d8ddb8527cc531b0a56ab57bb0a145ee2bb7d1cd947a0ba29044d96af7174", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hY3ksGt_7r_-JkZqod-dIg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "365262fc8f3eec668c313a6bd17155f45c6571469a162898b4608682536a6779", + "text": "https://www.kysec.cn/index.php?m=content&c=index&a=lists&catid=851&sessionid=", + "url": "https://www.kysec.cn/index.php?m=content&c=index&a=lists&catid=851&sessionid=" + } + ], + "value": "https://www.kysec.cn/index.php?m=content&c=index&a=lists&catid=851&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmoaRe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航空工业信息技术中心(金航数码)2026年度实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1776009600000", + "value": "2026-04-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/西安/成都/长沙/南昌/沈阳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "068faac810661cb3e3d0abded5024c6500c6838dfcc3b919aada70a0995ec8ae", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SbEpFoGpPsqzTWt-MPmhHQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "18f294d7ea5bfa4ab1f42e09d16fca198c5ef42e87db98558bf43661a598d3a9", + "text": "www.avic-digital.com", + "url": "https://www.avic-digital.com" + } + ], + "value": "www.avic-digital.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYLdFl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "走进电科博微、中国电科38所2026博士专场开放日邀请函" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775923200000", + "value": "2026-04-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月23日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0b3a29b88eb6ed2ade5c0a402d9d077cf6ffd71d7ddec8edd9e965d417ba22c2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Jc-UXE7_2UZGuVKDpFvQLQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ef318ac889e124c27adc970b1ea30e316cfa6e7f05a39df4e428c2eac845115d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlCLTt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "3M暑期实习生计划 | 解锁你的“智造”夏天" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775923200000", + "value": "2026-04-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d076c72558cae95624aa399da7e61a9dcb307b0b6d630b6d06a0c9d7bdda9b62", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xVw61hP1H2hhk6YZZ4NY-A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f7c525806997426e0b951641bd6121e71e661dd8541e76a81652448f336cfa15", + "text": "https://www.ajinga.com/recruiting/company/11702/job-list", + "url": "https://www.ajinga.com/recruiting/company/11702/job-list" + } + ], + "value": "https://www.ajinga.com/recruiting/company/11702/job-list" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rq3Law", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "报名开启!UPM 2026年暑期实习计划招募进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775923200000", + "value": "2026-04-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/常熟" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "708045f674537dca453962ccc19ca54a89fc3385c205acfa8c347837b45c0bea", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HhDNMMxxVbn2up0xCa_05A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "688be59165fa94b20e302053c2f79184b25c5dd4d1b0696a1c1d5ba83855268c", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVAj4m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "瑞幸咖啡2026春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775750400000", + "value": "2026-04-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyr0YZ" + ], + "value": [ + "零售快消" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ce39b5445b3e2247b0397c869575f665ae95b777e3c269fa3e84a9058d815be", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OckvAinMcvvu8J3YvYXjhQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87f1e7e9ee43afc0313de35b0597bde5c3662056cc8631667dbb9305e1c2115f", + "text": "https://lkcoffee.joinus.cc/campus-recruitment/lkcoffee/45257?sourceToken=f5b242fed257d3bef1da4b31d5252bf3&sessionid=#/jobs?page=1&anchorName=jobsList&departm=&keyword=27%E5%B1%8A%E5%AE%9E%E4%B9%A0", + "url": "https://lkcoffee.joinus.cc/campus-recruitment/lkcoffee/45257?sourceToken=f5b242fed257d3bef1da4b31d5252bf3&sessionid=#/jobs?page=1&anchorName=jobsList&departm=&keyword=27%E5%B1%8A%E5%AE%9E%E4%B9%A0" + } + ], + "value": "https://lkcoffee.joinus.cc/campus-recruitment/lkcoffee/45257?sourceToken=f5b242fed257d3bef1da4b31d5252bf3&sessionid=#/jobs?page=1&anchorName=jobsList&departm=&keyword=27%E5%B1%8A%E5%AE%9E%E4%B9%A0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rALxno", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "源乐晟资产2027届校园招聘&暑期实习计划全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775750400000", + "value": "2026-04-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2628ff670a0c26024917f038e557ddacba1db3f8ba70e0eb0e9a0e0fb4771b0e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0yEH0RLO3ahFELtztXVAVg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "15adf4f400ec803ab7cf040e2bf9ff30ec297f7339db6bcdfb3cf1fec922b545", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDVk3G", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "大众汽车寻找潜力股|AI实习生招募计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775750400000", + "value": "2026-04-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d8fbb46b7e3dfeddb7b6f4b1866a4007cfab68803b86b71befcb43998fc13b61", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/i-MWpjwItfgYJI3pWki3CQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c103bc00b7085e02943dda41470bb48ecc848b6f6467bdfdc81095d452eb6b72", + "text": "https://app.mokahr.com/campus-recruitment/vwa/142785#/", + "url": "https://app.mokahr.com/campus-recruitment/vwa/142785#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/vwa/142785#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsLzK1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中南电力2026年暑期实习生及校招开放日活动招募啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775750400000", + "value": "2026-04-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月1日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a7bcdfec7eb684e5c0f6e8bf1e9cce9f2b106a7481817e0660d2ab62b449a303", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xP7x_WS4J_0vPNzPzqNEbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3ce55b158c4c11ca0097a81aa1f9383552544779a25431cc5c636c54867c9f54", + "text": "https://job.csepdi.com", + "url": "https://job.csepdi.com" + } + ], + "value": "https://job.csepdi.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rE6ShX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智谱@2027届同学,你的AGI入场券已送达" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oUK9oO" + ], + "value": [ + "AI/算法/大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "43db17d29bf6855d5264cf8db7da1a7fe01eb0aa10b81ff744c727b7a56b8a93", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/R_uLHU4_8AA3WOwaRfrQBg?scene=1&click_id=16" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "91eab5e5666455c1707f898d9970d7c78d60f92e5ba5de7b973de2fb5085408e", + "text": "https://app.mokahr.com/campus-recruitment/zphz/148984?sessionid=#/jobs/", + "url": "https://app.mokahr.com/campus-recruitment/zphz/148984?sessionid=#/jobs/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/zphz/148984?sessionid=#/jobs/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTI1Qp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中信建投证券2026年暑期实习生计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4c6f67962a508bbec8e2983b3fac72dcec8a43b7a2cafcea3d4c0a673be3ac90", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tFopXfP7coxpJtbtD3qOjQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1ca62a06c0ba4bb64bb96c14ed238a8c7873f4120a79fc33d721a24da48c4b6e", + "text": "https://csc108.zhiye.com/campus/jobs", + "url": "https://csc108.zhiye.com/campus/jobs" + } + ], + "value": "https://csc108.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rI4nJ3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度暑期实习专项|PSIG星海计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cd2ca7c3646ea5c80805bbdba528ba7ea0072f63e36648ef9cbe2eb57e6d60ce", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pkuvSDUC5NaNXK_BQ7E-rw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8742c07f79adf28a03892ec47c5f0b82229db81022dbe7046fe571a64f1a89e3", + "text": "https://dwz.cn/3rCaOKcq", + "url": "https://dwz.cn/3rCaOKcq" + } + ], + "value": "https://dwz.cn/3rCaOKcq" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rgn2Ge", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "岚图汽车校招 | 智能驾驶26届春招及27届提前批" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3945e8f5b02f23043aae9df810c1b8a149a15fe143858fe4a3684c9a1a691615", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/O4Ev6f8qKkm6EyuvuLuGbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "65db8d5485130863fc28e029ea48711d050292c0c9235cc2ca0c4da74b684791", + "text": "https://app.mokahr.com/campus-recruitment/voyah/146293#/job/389ff759-8786-406e-b4fe-691867c9315c?from=qrcode&isRecommendation=undefined", + "url": "https://app.mokahr.com/campus-recruitment/voyah/146293#/job/389ff759-8786-406e-b4fe-691867c9315c?from=qrcode&isRecommendation=undefined" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/voyah/146293#/job/389ff759-8786-406e-b4fe-691867c9315c?from=qrcode&isRecommendation=undefined" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruvGUU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百图生科 2027 届实习生专项|BioMap Atlas 擎天计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2d1d6c9c11a4da46ba34b84740b413d62c54b637d4feaa42b973c54ffd4f9868", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/D48G7rBYsrwTCLw80j0iUg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c9318965df592d50b3370a053ec4423f0e9fb0f8720efae9653c59630cc6035e", + "text": "https://talent.biomap-inc.com/", + "url": "https://talent.biomap-inc.com/" + } + ], + "value": "https://talent.biomap-inc.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUxIhJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "34座城市,2000+需求 | CTI华测检测2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775664000000", + "value": "2026-04-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5d53dcb267be5afc3db6196c498f866a4ba90b3d9076904ddbdc413a63c7178d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/t2DXYE4WUR_25irboZfW-g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9cc4f71de8923c3d5fe105d69a10a7a18f62f0c8fbdcf239dcc7d752989f4fe9", + "text": "https://app.mokahr.com/campus-recruitment/cti/142093?locale=zh-CN#/", + "url": "https://app.mokahr.com/campus-recruitment/cti/142093?locale=zh-CN#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/cti/142093?locale=zh-CN#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPvWbf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "致远互联2026年实习生招聘计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775577600000", + "value": "2026-04-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fac1620a90e3f1d0f5acbfc559eb54fe8b6a0222b2c6f9a9a97e2be1efcf6961", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qYAgCfz771YJ1gmOncPQyQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "20bb7811cbfa38c0d3d6aae249e95ec60a64a9feabae3325af3a9b27dc5024f0", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrtSx6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西山居2026春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775577600000", + "value": "2026-04-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "珠海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c950abf336a9761125e42a7ecf7ac677b6007ef391b7c6e7b4a30ba13013edc3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/MiByyh1qReAcqdDBPoTi2g?poc_token=HEw71mmjp09DUUPcFre9GN5z9uXBoOpjiwdEz1Ev" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "424f07999eafaf22b81f5543e1a4a805bf36fa5f6a668870cbf1f658dbffdbbc", + "text": "https://job.seasungames.cn/campus#/", + "url": "https://job.seasungames.cn/campus#/" + } + ], + "value": "https://job.seasungames.cn/campus#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIRy0F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "NVT新能源 2027届工程技术员校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775577600000", + "value": "2026-04-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8c9ffa6431cd3710eaaaf42dc1d479395297fbbf0467d9d18b18068a4e2d432c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/bicJhFn5b46goz_CwTFeVA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "46efc3ceebe8c0c565262870496f1780631c30200ea48d9294b4c5bbadfa269b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r35XeW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "IQVIA艾昆纬2026年暑期实习生招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/广州/台北" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f4674da30c8b633352ac505afb7bb66d59c56dc28003401de6e7fb4155fe00ec", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Xu3vB3Okpf7HRktAevinNA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20216849b55af2a24e702b19082139d5f2a51330921a0aeb4a91f2ace6792e85", + "text": "https://careersite.tupu360.com/iqvia/position/index?recruitmentType=INTERNSHIPRECRUITMENT", + "url": "https://careersite.tupu360.com/iqvia/position/index?recruitmentType=INTERNSHIPRECRUITMENT" + } + ], + "value": "https://careersite.tupu360.com/iqvia/position/index?recruitmentType=INTERNSHIPRECRUITMENT" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rS1Z8K", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "气派科技2027届实习生招募开启|赴半导体之约,让青春大有可为" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "01c6fd7d92793512bb970eee8e536793900a3d9d47aeb5f296b161cddfd30144", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NmNkIdmTVjBLz-d517OPEg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e8696652d18cfb12b9ee17020bb8cdf3968c1f2112a48398c9bd37763b92dd1b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRdAaR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "4月必冲!加入汇丰环球实习,100+实习岗位助你解锁金融职场硬技能" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "佛山/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8d0107c41f77c338c5b0714732a2d72ad60ccffded3bb66c1b5c525481b1eb70", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/H6D2SaHkzirlGE0UuvKKLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0297ba598e33cdf461c3c66837fb4e935798a672392f996a6df31b33b89868fc", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJP6j2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "与优秀同行 | 方田教育2027届校园招聘提前批启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa6Z1q" + ], + "value": [ + "教育" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "931b0e55d213565be4429b155cf883d92f80c06c581a7fa9b96d446c5af093f2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YRvDNDiUfHOXVRLwkyrWGg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "11f08bae5f0d85799d919607b7a0b5e503bef13ed770500783128643e68f24ae", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlgb6R", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "有你才有未来|平安理财2027届暑期实习生招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "16af859e6e3d1639f5ad770818ee2d6257ba15089d33b5d7d92cf2c1fa989a2c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HBD-zv7Wd2BrhrJ0N7CPNQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "01f95ccb9530f62746a697d4cb1d5b754fdf6a3b56732f2c9dbc2ee2ee58cb32", + "text": "https://wetalent.pingan.com/b69618aabe9e33c3aa2a57186bdabab8/campus/home", + "url": "https://wetalent.pingan.com/b69618aabe9e33c3aa2a57186bdabab8/campus/home" + } + ], + "value": "https://wetalent.pingan.com/b69618aabe9e33c3aa2a57186bdabab8/campus/home" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUZQ7m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿迪达斯王牌实习生招募启动 | 以年轻创意力,回应中国脉动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775491200000", + "value": "2026-04-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "53b6a49e17cee3852979053beb87ea43accd6c0dec0bb916e4900ef427f0169d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dw6R-xvavUiNlQJaVTOjvQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ee37e16060369544f28fa51d2927be1585159e408db941b6963f695130390e11", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6WFcA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "山西信托股份有限公司2026年“晋信·启航”实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "太原" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7727c0f19624d003fef9de25a029583a52ac7d0285c6d7061eae0fd894635bc1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Lh65ixP4DdVS2IZU5uihlA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "38f104429665e6e98f69425e434798de201c01ebf4ba768cc291c317356b96bc", + "text": "https://www.sxxt.net", + "url": "https://www.sxxt.net" + } + ], + "value": "https://www.sxxt.net" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5Gs5u", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "深圳证券交易所2026年暑期实习生招收启事" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月26日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "998bf84f3866db0e55a44db83cac0c5ba459cf53e7bab159f00bd8cbdeb6a456", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ZaENhWXYNJfXvv_1MlVbHw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a6e5dc33ef76202e5b8abe17c79d3e647220579e775829c4e342196f5589e36", + "text": "http://www.szse.cn/aboutus/online/index.html", + "url": "http://www.szse.cn/aboutus/online/index.html" + } + ], + "value": "http://www.szse.cn/aboutus/online/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzREML", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“橙”风启航 | 2026普华永道暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2a7c586c765a1cb951eec3a27fec3fa60454315228a7cb89de6a3713a9a56253", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/N5Rpyla9sd24kLksTvi58A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1cab93c6f9876b5ae8ded5ccbcc3be68a4cf17f584216436376fd67916304bc4", + "text": "https://app.mokahr.com/campus-recruitment/pwc/148260?sourceToken=618116131bf57b0c9ff491838b0c93f1&locale=zh-CN#/jobs?271962%5B0%5D=Graduate%20programme&271962%5B1%5D=Edge-Deals&271962%5B2%5D=China%20Sourcing%20Initiative&271962%5B3%5D=Assurance%20Remote%2", + "url": "https://app.mokahr.com/campus-recruitment/pwc/148260?sourceToken=618116131bf57b0c9ff491838b0c93f1&locale=zh-CN#/jobs?271962%5B0%5D=Graduate%20programme&271962%5B1%5D=Edge-Deals&271962%5B2%5D=China%20Sourcing%20Initiative&271962%5B3%5D=Assurance%20Remote%2" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/pwc/148260?sourceToken=618116131bf57b0c9ff491838b0c93f1&locale=zh-CN#/jobs?271962%5B0%5D=Graduate%20programme&271962%5B1%5D=Edge-Deals&271962%5B2%5D=China%20Sourcing%20Initiative&271962%5B3%5D=Assurance%20Remote%2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruXmQU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西部证券2026届春季校园招聘&暑期实习生招聘正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4cbdf3602e496b503d0bb9c989e3e06c1b2b8d3a98259daee9863c346f5c5d8e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/elSY8_PZE7TZzB7Dw535DQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "df53e070300a83af3c18e6ef05e9281c6b50e863de2dbd28f6353d8d9e863452", + "text": "https://wecruit.hotjob.cn/SU614049aebef57c3b638d207c/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU614049aebef57c3b638d207c/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU614049aebef57c3b638d207c/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rneXP8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "曦引力·芯引擎|曦望 2027 届实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京/深圳 /上海/成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2dfb925f374d8f3e9b5bf80eedb333f19869a44a718c1c86b081987fef161b5c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9P_mSw6uC5NuIFmesWPllg?scene=1&click_id=10" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d99185a6e41631e3327f6c5bc11a8a0855c1626679b693f1ec42f9599df4a5c8", + "text": "https://jobs.sunrise-ai.com/campus/?keywords=&category=&location=&project=7623002250404170027&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=", + "url": "https://jobs.sunrise-ai.com/campus/?keywords=&category=&location=&project=7623002250404170027&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "value": "https://jobs.sunrise-ai.com/campus/?keywords=&category=&location=&project=7623002250404170027&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rk9N9l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奥比中光|视觉SLAM实习生专场招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2ec0d82390e1a31e3f36bb417f223ef86da5e5ed2f8e050dfae31fce4efb32de", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hKsHDtQwTWb2tTAIE7aZAw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5c745439d265839206ab3a42b5684dd18581f9e5214319b0aef5b1b1a4e3b46c", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEGHce", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度Apollo·探路星 | 自动驾驶顶尖技术实习计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d70c37e25f376eceee8af063a4459e80d67e855e22174573666083dac010b5cc", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EVDv-Yj5ZB1IlRyPpoctcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8211d597b5f744ba2d495f009be8cd7bb91a17dcc346f35261834ca989fc69d6", + "text": "https://dwz.cn/3rCaOKcq", + "url": "https://dwz.cn/3rCaOKcq" + } + ], + "value": "https://dwz.cn/3rCaOKcq" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rz35wA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "江苏省数据集团2026年实习生招聘公告" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775318400000", + "value": "2026-04-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b0e0b0cd93db6f52cb5af36afda212b88abfd335c98c55bc8855d2e43561c0c9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/o44H0AeFgihnLZ0qJbi3zQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "77699bc5e49a74ca01d580b1c1aa1427d88c2388152f8f260be1982aa5d0d45e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtmKSD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "国泰基金2026年“菁英计划”全面开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ed56bcbce767a37a17f44d2dd56e24705ba0556ec809c49fd1b8b6eab4e0b9ef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oEOcwzjSHI4sMX7cJhocTg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bdbe3980991446b928eb4178e1a7ef165e99b430d531e2c17ff130a7ffa53b71", + "text": "https://gtfund.zhiye.com/8/jobs", + "url": "https://gtfund.zhiye.com/8/jobs" + } + ], + "value": "https://gtfund.zhiye.com/8/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7llxe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国移动杭研校招季丨“凌云计划”实习生招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "04e46c19f8488dfe3a10a62862b5a7517e0c0b7f476b713ee7bf90d5d0b80ded", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/bZb9Un7suVS5cXKi8v-UfQ?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6f5a454a43cb0e0306931f2866683dd0b7779db2b688efe1a147c0f028f519c0", + "text": "https://www.zhipin.com/dz/zyhy2026/job", + "url": "https://www.zhipin.com/dz/zyhy2026/job" + } + ], + "value": "https://www.zhipin.com/dz/zyhy2026/job" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7JkI7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "点众科技|实习生招聘火热进行中!1000+offer 等你来拿!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/杭州/广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b0f4ab7db0d54cee97145b4836e0576723a83cc06652339787c2c0556eea7ca7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SPpfuen2iP2CKcd9ur6zZA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7670b43b214a343cba9dda966b266e1032ddef6009e9910097428844324b7957", + "text": "https://app.mokahr.com/apply/dianzhong/29071?sessionid=#/jobs", + "url": "https://app.mokahr.com/apply/dianzhong/29071?sessionid=#/jobs" + } + ], + "value": "https://app.mokahr.com/apply/dianzhong/29071?sessionid=#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNTPHQ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "美团战略与投资平台2027届暑期转正实习正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "be26960cca3a33202aaeafd145496493a936e7871bed35b5531f94c3f5a704b2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Xg0cZydhNhf8r0QrYSpRFQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2535ff611e80f716fb1bcdeb2e73c98cd9a0a3d4130d2da6f92601bef6cec15e", + "text": "https://zhaopin.meituan.com/m/campus?zp-from=hiring-campus-bole-elephant&staffSsoId=24343714", + "url": "https://zhaopin.meituan.com/m/campus?zp-from=hiring-campus-bole-elephant&staffSsoId=24343714" + } + ], + "value": "https://zhaopin.meituan.com/m/campus?zp-from=hiring-campus-bole-elephant&staffSsoId=24343714" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1w4qY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中微公司2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南昌" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9ac4eee5d14c1cc344e99dfa4638e9a990c121e16d090b7b0d5b3e02f8b47029", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ogkxgYSVv5b_cGhC5ts8mQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8031de10b44f88cf9446b28fd6ca338778b182279e7a23a1ca5facbfca81f7a7", + "text": "https://app.mokahr.com/campus-recruitment/amec/146254#/jobs?zhineng%5B0%5D=224204", + "url": "https://app.mokahr.com/campus-recruitment/amec/146254#/jobs?zhineng%5B0%5D=224204" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/amec/146254#/jobs?zhineng%5B0%5D=224204" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRcY7o", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广西农村合作金融机构2026年实习生招募启事" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广西" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "timeout", + "result": "unknown", + "status_code": null + }, + "key": "2ba1f943b65e663cd8b7ec1b1793b31fe31074e9bfb0bb3a2924949c495fb081", + "text": "点击查看", + "url": "https://www.gx966888.com/zpgg/11737.jhtml?sessionid=" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "timeout", + "result": "unknown", + "status_code": null + }, + "key": "66d664392c1bf8706080ede50ba83e384cf0d9e05191c8ed658864cf2adfc246", + "text": "https://www.gx966888.com/zpsy.jhtml", + "url": "https://www.gx966888.com/zpsy.jhtml" + } + ], + "value": "https://www.gx966888.com/zpsy.jhtml" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rf7GZE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "菁瑞医疗2026春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oLI3a7" + ], + "value": [ + "医药医疗" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "45959965883da3dc381fe2bdad01d62c50dcd452c134a1aa1fcb5fa20d2a542e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fVyzq0Je5LzTp0aAHHtKzA?scene=1&click_id=7" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2c9b5267076d6ef53d8a0fadf913a545e71164198b7cd32257755187162c2655", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIoExg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026星展管培实习生计划,邀你开启金融新征程!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1775145600000", + "value": "2026-04-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月17日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03a6c9596f516a15b4098c9672dbc85158e160efbfffc2c863eafd734af88bc7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vlbin9bly048LHn2X3Uh2A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a5fa8ec7e61b7dcadbbcb7b4fb8ccdfe9102115a6d8422b743ad36070d49d5bc", + "text": "https://campus.51job.com/dbscn/about4.html", + "url": "https://campus.51job.com/dbscn/about4.html" + } + ], + "value": "https://campus.51job.com/dbscn/about4.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIy9eK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "佳期投资2026暑期实习火热招聘中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e2eb0a900cb48e8270c778906b4bcc015bb32d569499e140ed7948f8b5ef6f45", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fQOXZlP-pYTcmxL4QYjBlw?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ef9fcc69907f223e51a91a8a01dc6af41c7758b018e486cc1c8065e42b1615ec", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMHQMm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "博西家电青年人才计划 “战略实习生”项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8126cd4d0e1c03ef048c7217293b171009e46e6d64053bcc00ac937dd3f951e0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/hlqlLKD1tr65cYRd1lzaPg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0bd509fd51c79afe6e3e3abe52d019d77285d61a11325eafcf2492aa0095c2d8", + "text": "https://app.mokahr.com/social-recruitment/bshg/171901?locale=zh-CN&sessionid=#/", + "url": "https://公告中扫码投递" + } + ], + "value": "https://app.mokahr.com/social-recruitment/bshg/171901?locale=zh-CN&sessionid=#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLlKqz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中兴财经暑假实习生招聘正式启动!寻找YOUCAI的你!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4Ebi4" + ], + "value": [ + "金融服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/南京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e4c9d41a67db438af5c09676129ec24fc69914790e0b62c0baa9357fe9afd8b5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EKMmLx9dQtaDf3uDS9BDtw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "757fdf18cd766c8b6119e18461ac20270f269b3f6d5ae793bd9076ef2f146938", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFDsDA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海信全球营销中心2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "602020be1aa43236b55fa8a1325cdbf721dba3f873c078f901fedb01f864a19b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pEXM87OY3BrJo0jWfW_Rbw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "47560b24862fb74fd0549f5bec53491e3838d8b28cb6613b276da17e598c1e26", + "text": "https://jobs.hisense.com/intern/jobs?queryId=49563d13-45c4-4ce2-8894-7739c96128e7", + "url": "https://jobs.hisense.com/intern/jobs?queryId=49563d13-45c4-4ce2-8894-7739c96128e7" + } + ], + "value": "https://jobs.hisense.com/intern/jobs?queryId=49563d13-45c4-4ce2-8894-7739c96128e7" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZK9di", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "哔哩哔哩2026 BW项目实习生招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a7888581baaa26668a14af2ac03b6d166d8a8871e43c40011816304ec275c77a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uWae_pQZMX5APh2Zvp_48g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6fb6f4fd35449f16aa60085de74c9f71156d8e02364bf3948ef5604593c2b62", + "text": "https://jobs.bilibili.com/campus/positions?name=BW&practiceTypes=1&type=0", + "url": "https://jobs.bilibili.com/campus/positions?name=BW&practiceTypes=1&type=0" + } + ], + "value": "https://jobs.bilibili.com/campus/positions?name=BW&practiceTypes=1&type=0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8kQ2A", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南方基金2027届校园招聘全球启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774972800000", + "value": "2026-04-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月26日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b2e31edbac57cbd87a4e1fa673ef453a24e8197eb252552db52e4eb7f89b7055", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/e3Nh_Syeext8JH_kfsGixA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d2395fa329d40dab650f41822636a45828c633a29cd7c7458099a3a0019222cc", + "text": "https://wecruit.hotjob.cn/SU6138665dbef57c3b63841399/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU6138665dbef57c3b63841399/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU6138665dbef57c3b63841399/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7YNE8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "逻辑比特2027届实习生招聘全球启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "578a867793b6b9647b9a6ef7311caefdf953c9d113c62dbd921d53bd5669b38d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2Lu7s1GDHImkCJB6KXa6vg?scene=1&click_id=31" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1c40f2226abe521f82df4cd989c5f3589a2f954f5a686e347f251de396cf825b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrx5Iw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“添”才计划 | 汇添富基金2027校园招聘暑期选拔" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0730f0fd66b2975053712665dba5f2d753caf5fd93a54effdecfa5554917cf5d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wMHwUFWKLjnF4BK8jvoG3w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "58eacb83bf86101393ab696e6714d5d3811422e792e31411c7ce2679b39a178a", + "text": "http://htffund.zhiye.com/campus", + "url": "http://htffund.zhiye.com/campus" + } + ], + "value": "http://htffund.zhiye.com/campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rq238a", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘|2026贝恩公司大中华区春季PTA招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月16日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9636a946b311d0502e02326663ca36b82f2f04bd3876c29cad4582ac6573ecdf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/by5uvq8k0UNYZ6-DzbPR7A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "041f6464e6c3fc3ce6604fb89408873f14ce89decc2fc648759a3e9378e3c687", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhOYEw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "在蒂升电梯,我们不只提供实习岗位,更成就未来菁兵" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛/长春/大连/沈阳/济南/石家庄/烟台/天津/秦皇岛/北京/昆明" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "42a068f57ff096023bdbdb6121473c1628dbdf99e9e9e1cc6006e00fd1897b5d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9wSTyRaXxN5r9L9qiYewcA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1865528b4065f922d8518ce0035daab88fa842eb10ac2842bde10be746a34d37", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rr4co3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "世纪前沿暑期实习2026高潜人才计划正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "263d0ec965f0f86d443fcfa46856d154d0b85cdbf9afdfefc827017abb876249", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/G4MFVhMGNKqifxV5M4CLFw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "cb95d049661f0592123aea94d3a5d042b05aa93cf02a7e03cf46ca461f4847ea", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1AovX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商证券2026届春季校园招聘&暑期实习生招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774886400000", + "value": "2026-03-31" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e188d1519cd53ae603cfde63cbab35da03739b374b497517fd01e14530f02530", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/bheJsr2Hc9QNfSaJvbC5zQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "06106c2cbf7564482787f852083cf41925a0d1e64e40f69c34cbed13401270b3", + "text": "https://wecruit.hotjob.cn/SU629dbc0c0dcad452299bc0f7/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU629dbc0c0dcad452299bc0f7/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU629dbc0c0dcad452299bc0f7/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rO5xNj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "高通(中国)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774800000000", + "value": "2026-03-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/成都/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c419c220f9c89440c5aee8f4e86cbfbce31d0841ea07e9260c3e7e51ab14bdc5", + "text": "点击查看", + "url": "https://www.nowcoder.com/careers/qualcommchina/170559?sessionid=" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35889187471abfb6b5ab628242fb65f3d8edad39d529f93989589a9892a5f7b2", + "text": "https://www.nowcoder.com/careers/qualcommchina/170559?sessionid=", + "url": "https://www.nowcoder.com/careers/qualcommchina/170559?sessionid=" + } + ], + "value": "https://www.nowcoder.com/careers/qualcommchina/170559?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1O6Q5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商银行第10季数字金融训练营(2027校招提前批)正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774800000000", + "value": "2026-03-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a7cc94bef519a7f0737338f97145ebf2688ec19d9c2ed50c7e2e5ddf940611d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3aqIPCMUnpmySlz1ffZT_Q?poc_token=HNlWymmj2-qbxvR99Y9bXzipW2JVpE6HDIjgkZsD" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e8ed97754cfec6e06e2adf77124646f205600040c3af5c8700c4555a1498a42a", + "text": "https://career.cmbchina.com/positionDetail/school?publishId=D0DC5A9A-888B-4134-95FF-1EEAC80EB4F5", + "url": "https://career.cmbchina.com/positionDetail/school?publishId=D0DC5A9A-888B-4134-95FF-1EEAC80EB4F5" + } + ], + "value": "https://career.cmbchina.com/positionDetail/school?publishId=D0DC5A9A-888B-4134-95FF-1EEAC80EB4F5" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9TQSd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "歌尔2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774800000000", + "value": "2026-03-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqnzsD" + ], + "value": [ + "制造业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "潍坊/青岛/北京/西安等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4e43338c792a1cb4bf143f4c30cd2fcac7ed562ca61ad72164b75525255ed67d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sLPScyaKcTYzKfU5S62Sfw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f98eda4422bd5aa0d9f53d85f3e1a1194d3b53ce3e7879d35e1564999ce4ba78", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4BAbK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "因诺资产·破界计划(大模型×量化)招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774800000000", + "value": "2026-03-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "17a4ac2d95bff4d31607162281f18faa4d61d4e5377fdf2df81bb2a783322a30", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g7zDSOmNWZ_OvwUqERDlBQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5dc937a8bae647dbb92a554fd508718d470e55a20ab8ccb4b4c46ee8eff4fa2f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rx0O2Q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "27届实习 | 蔚来自动驾驶研发2027届实习生招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774540800000", + "value": "2026-03-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "45f400989afd8e383eff880b2f7d058c29f56c4f189612be5dd48c0aa9874c5c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/u-yQhYkyQHFL3JNUYW27tA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "3f501a3db5ffddb9b717afce9557b39dd7d86e9d963d02737b903ddecb0b08db", + "text": "https://nio.jobs.feishu.cn/s/jXmk4TQPV28", + "url": "https://nio.jobs.feishu.cn/s/jXmk4TQPV28" + } + ], + "value": "https://nio.jobs.feishu.cn/s/jXmk4TQPV28" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnpgJL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "加入我们 | 洪泰基金2027校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774540800000", + "value": "2026-03-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "930b73b159de69ac819aef75fc9baae1b25ca85e1e4c3352877b75aa4db2ff3f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Jr1nY_Iro4qZU5d1y6smYg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c3d2625405fac912b7863b0aadeb200ccd84b71ef98dac2cfc4198334b1261b2", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4HOBn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "年少有为 来K-C! 金佰利2026年暑期实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774540800000", + "value": "2026-03-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月6日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "34598ed482efaf89fe89fd60057bdf5468b3b4c8471876174bd18b0d4a608f1d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/s_gzPWAterhWhvGJWOwsdA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "10327b026407426ee2abdb8a2aeb1f63e19a11e7408dda6e9b84acdf3fc7462b", + "text": "https://campus.51job.com/K-CSUMMER2026/", + "url": "https://campus.51job.com/K-CSUMMER2026/" + } + ], + "value": "https://campus.51job.com/K-CSUMMER2026/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rr7SCt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“梦工场”招商银行总行2027暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774454400000", + "value": "2026-03-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月19日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d392bf2acec33a2aad2f9855eea052e5f2be365e114a6962b083161b64db4457", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BGkZX5YDAfbU6Yeaanyo3A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea1b25e04dc758e6512556aeaf0a3a962a3d33865f2a96e53710868da1f13778", + "text": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82", + "url": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82" + } + ], + "value": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3rrrZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量化校招 | 大岩资本2026春季招聘正式开启!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774454400000", + "value": "2026-03-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dc22ea3bcc7e92289a1f1ee6eff5f599f925d6af5fc3f13e492643c28cb84e5b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/GOQ-AN7N6Rjbqf37UbRSjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "ca0ba9f9752a149394bf6668ef49d8b5904fa1b910a706d2dfbc2e4b424ed3f9", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1smLC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "保持好奇心|真格基金第 23 期实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774454400000", + "value": "2026-03-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b5f9077ac00dd8a120fefbc87a657c1a6d51bd0ae6cc00900124c85182fd05f3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lRlddwL3uZoC6sjaqw2R8g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "110b9e838dd2cce4a182268302db0c5fbaf2639f118820b8736f890a0c0581a7", + "text": "https://zhenfund.jobs.feishu.cn/356542/position/list", + "url": "https://zhenfund.jobs.feishu.cn/356542/position/list" + } + ], + "value": "https://zhenfund.jobs.feishu.cn/356542/position/list" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rF18rw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "解锁你的无限热爱!北京环球度假区2027届春季校园招聘启动|一线运营岗位" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月6日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52ea996ace10391bf5a999cb65ce74713737af2d8d6631fd9bf059e9a28f1344", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1ETTOPxkSfjeNrd3Gb1MeA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6435c21e9329bc944cef3c5486e4ac47415b93033fd42e2df8c52c6109b1275e", + "text": "https://app.mokahr.com/campus-recruitment/ubr/117987#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/ubr/117987#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ubr/117987#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTNSDx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鼎桥技术2027届暑期实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80506715ced0133fc58c634cd29aafcac6946eab7d23e8c86a0c70ff0f43c2b7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1HwQtI6_tP0PeKfdq5MgbQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "18ee3248a9fadb21bdd50346a87e3cfa1fd0f161b79a5946a40f529ca8ef0e43", + "text": "https://td-tech.zhiye.com/intern/jobs?sessionid=", + "url": "https://td-tech.zhiye.com/intern/jobs?sessionid=" + } + ], + "value": "https://td-tech.zhiye.com/intern/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpmNfA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阅文集团2026春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月24日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ce45308df0e1fe3f16ac9f04e2c5a796d20b78979357f2f2dfbacf79e054253f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2hMWy60KcieXlNpb7EXVvw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "13f6d516ee0f505a8bb33cf7911dc2161a063bd12cafd17a0126f09dd15f8144", + "text": "https://join.yuewen.com/fieldwork", + "url": "https://join.yuewen.com/fieldwork" + } + ], + "value": "https://join.yuewen.com/fieldwork" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIZuNm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "景顺长城基金2027届暑期实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月24日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8c1d06f7f31d7ab5f357799e30e759c262e33889d5a9c281b10e162d0746ae95", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-2GQxl9uWQvwNuUN8XQAsA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4138fdbcfa5280a4d977b335e8a5dfb4f4f3144ad0d2df6c0a65672e8f5c15e3", + "text": "https://invescogreatwall.zhiye.com/Campus", + "url": "https://invescogreatwall.zhiye.com/Campus" + } + ], + "value": "https://invescogreatwall.zhiye.com/Campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLhzM7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "一线实战!带薪研学!鹰角网络2026暑期训练营招募启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "69d413d2e4d88294fd3c644d95cd1fbcb8e96423e3a6e449ce8d65698bbee22b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EEta24CMoYqaqgtF1ZZ1xg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5223bb6dfa952200c2c8ff0fc99fa744d61bb354afb9288e8787511ed91b0f70", + "text": "https://app.mokahr.com/m/recommendation-apply/hypergryph/26594?sharePageId=4461888&recommendCode=NTAbCVd&codeType=1#/recommendation/page/4461888", + "url": "https://app.mokahr.com/m/recommendation-apply/hypergryph/26594?sharePageId=4461888&recommendCode=NTAbCVd&codeType=1#/recommendation/page/4461888" + } + ], + "value": "https://app.mokahr.com/m/recommendation-apply/hypergryph/26594?sharePageId=4461888&recommendCode=NTAbCVd&codeType=1#/recommendation/page/4461888" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfKnAa", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "吉利控股集团「基石计划」2027届专属招募,正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月25日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/宁波/赣州/盐城/台州/鹰潭/上尧/上海等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4afff128d459bff77a68d256854cffcd45539b373e5459d1fc413497939587b4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QRbU7q3Md7JylHz4gn2TdA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f032bf666a105da5f379c153a90d16b286f995cbb50b5fc4bade1a5d32ead00", + "text": "https://app.mokahr.com/m/campus-recruitment/geely/78436?recommendCode=DSJX6tYg&hash=%23%2Fjobs", + "url": "https://app.mokahr.com/m/campus-recruitment/geely/78436?recommendCode=DSJX6tYg&hash=%23%2Fjobs" + } + ], + "value": "https://app.mokahr.com/m/campus-recruitment/geely/78436?recommendCode=DSJX6tYg&hash=%23%2Fjobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rE1wMa", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华住集团2026年酒店经营管培生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774368000000", + "value": "2026-03-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyNwUr" + ], + "value": [ + "酒店" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ae07d6dcc251b59435f37505b427d31aadfd6632f7030c287c65fdc73dbaf7e0", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0PhErFcflHKM_VXKPK8Ozw?scene=1&click_id=25" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f6ba9498d17d4f473bd0aa8b9bbaff4400cbbc6fa19b06a7b054836b2ad897c0", + "text": "https://huazhu1.zhiye.com/campus/jobs", + "url": "https://huazhu1.zhiye.com/campus/jobs" + } + ], + "value": "https://huazhu1.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVXiz6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "作业帮2027届暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "92baa1b4ad8f1ebbae08cb6218f3e9c9aa4aba5560737c35e120dbeb6157ce8c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XXmGdWiYs4DQv7ueMlEYWQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e8338fcf3d91a7ce58ddc2ae0b077b89fcbaa0de22f509957a2bcc593bac8e41", + "text": "https://app.mokahr.com/m/campus_apply/zuoyebang/39595?recommendCode=DSRVXB8B&hash=%23%2Fjobs", + "url": "https://app.mokahr.com/m/campus_apply/zuoyebang/39595?recommendCode=DSRVXB8B&hash=%23%2Fjobs" + } + ], + "value": "https://app.mokahr.com/m/campus_apply/zuoyebang/39595?recommendCode=DSRVXB8B&hash=%23%2Fjobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRMeGt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科耀未来 | 科尔尼2026暑期实习正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月9日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "659b1387fac6c952f3ee978813ae8e3f346742556cfe028a96dd9ae7f360563f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YyJEm7roas_xN4ha33pbNQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2fddbbdf48948230f4976fe82a4a90d2867727904d6bc6063f9f87c5e5705cbc", + "text": "https://kearney.taleo.net/careersection/01c/jobdetail.ftl?job=006DR", + "url": "https://kearney.taleo.net/careersection/01c/jobdetail.ftl?job=006DR" + } + ], + "value": "https://kearney.taleo.net/careersection/01c/jobdetail.ftl?job=006DR" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rjKGju", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘丨泰康基金2027届暑期泰YOUNG实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fc938346cbd77cfe3eaee5e6be70fc26bbd2e7be27816107aaa350355bd80723", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dtH-om9uh_-afQ543xjkhQ?scene=1&click_id=17" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6affd5a3f21d7dbc55b6f4505363c6a53882316426390232682433a559139531", + "text": "https://jobtaikang.zhiye.com/jobs?activityGuid=46ab0e8f-0be2-420f-8e6c-fd391ac06b26", + "url": "https://jobtaikang.zhiye.com/jobs?activityGuid=46ab0e8f-0be2-420f-8e6c-fd391ac06b26" + } + ], + "value": "https://jobtaikang.zhiye.com/jobs?activityGuid=46ab0e8f-0be2-420f-8e6c-fd391ac06b26" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvJoqC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 兴业证券集团2027届暑期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/广州/深圳/福州/杭州/厦门/南京/泉州/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d8e042c3220742523370645aaf30ec09e96d5ae0c02e82205d78b732c0016217", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uGrfq4gk5ry0kfYL5TU9zA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0399dcc27be45d9d2f1e831df68dbfbf3a4538551d89839446106981420fe581", + "text": "https://wecruit.hotjob.cn/SU68fb2499b7da1347a9dd852c/pb/school.html", + "url": "https://wecruit.hotjob.cn/SU68fb2499b7da1347a9dd852c/pb/school.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU68fb2499b7da1347a9dd852c/pb/school.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRJNHI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "顶尖人才计划 | 算秩未来多岗位招募,有转正机会!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "op7bJ1" + ], + "value": [ + "AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f52fde7836d6ffc985e676008e48060e248fd567fa1f4e0fdc5360a24c713099", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/plAe3XYMdtngCP0zZ0W2Zg?scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "902728758916fa10317d9a98d79085c2099649a0e41d4becf7e49c19dd0998b8", + "text": "https://acnizrso7ikb.jobs.feishu.cn/referral/campus/position?token=MzsxNzczNzU1MDIwMjU4Ozc1NDc2NTk0ODE0ODE3NzMwNTk7MDsx", + "url": "https://acnizrso7ikb.jobs.feishu.cn/referral/campus/position?token=MzsxNzczNzU1MDIwMjU4Ozc1NDc2NTk0ODE0ODE3NzMwNTk7MDsx" + } + ], + "value": "https://acnizrso7ikb.jobs.feishu.cn/referral/campus/position?token=MzsxNzczNzU1MDIwMjU4Ozc1NDc2NTk0ODE0ODE3NzMwNTk7MDsx" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rjapZU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "建投资本 | 2026年实习生招募启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月7日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "13748e04cb9e3225f13e88ebd7064b18375aafa96eb224b6bf10a3ed7d8e516b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/mzCGHHeiXAwtMpzeI8mxTQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "a8005b7da867157020415319878a84e58db453061497649a08fe72b680bcdc8f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZxcAw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "未来,我们来!霍尼韦尔2027届实习生招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/苏州/天津/厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2a98e777d3f4705ec27cb3a83279d665febfc6136b83650e10ddabfb5a59bbb4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NvJCXY-SB3IxqrXHCr4_hw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "df5e612e068bbdc07f033669c556a207d88fe37592d95b8ee90ef208f52e510f", + "text": "https://careers.honeywell.com/campaignPost/300002209872357?utm_source=other%20social%20media&utm_medium=campaign&utm_campaign=13&utm_post_id=300002209872357", + "url": "https://careers.honeywell.com/campaignPost/300002209872357?utm_source=other%20social%20media&utm_medium=campaign&utm_campaign=13&utm_post_id=300002209872357" + } + ], + "value": "https://careers.honeywell.com/campaignPost/300002209872357?utm_source=other%20social%20media&utm_medium=campaign&utm_campaign=13&utm_post_id=300002209872357" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2hbFW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "汇川技术联合动力新能源汽车业务实习生招聘进行中!速来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b7f7ef2dbe3109680d3131ce9046c91e63216a7623805123c8cc86c53259d657", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/47SGwXNYvJKJ5zs7hclDxw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "acbcfb6442871fd79065e5df83a98038b3febc0e04a8841fd6c991577c383e26", + "text": "https://inovance.zhiye.com/intern/jobs", + "url": "https://inovance.zhiye.com/intern/jobs" + } + ], + "value": "https://inovance.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLHtIT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华夏基金2026年暑期实习招聘全面开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月26日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/杭州/香港/济南" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "662ad1b8e1e0d79fab4cefc80685b540ffe82137a9c0d916c2b050e39539bee2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lzrMXpYCdazO_ZBz-KF92g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ab6393057b5b3539fb7e1f1454e883c2575c3a82f199f6928cb78bd50272d341", + "text": "http://chinaamc.zhiye.com/sxszw", + "url": "http://chinaamc.zhiye.com/sxszw" + } + ], + "value": "http://chinaamc.zhiye.com/sxszw" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTIuvi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宝洁2026春季校园招聘(暑期实习生/全职管理岗)开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/上海/北京/全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7ea885082b8c71c3cb8ce6c742af9d9104ce03afe370655f4c5a6775a3e52a7d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ZRfU3n_uToZnla7yIVrJjg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f045afa4dc2416cc8e0a6389a67ff7c6837d5a51c2a2f7cff9a374818dcdd42c", + "text": "https://careers.pg.com.cn/cn/en/search-results?keywords=Internship", + "url": "https://careers.pg.com.cn/cn/en/search-results?keywords=Internship" + } + ], + "value": "https://careers.pg.com.cn/cn/en/search-results?keywords=Internship" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9zFfe", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "香农基金2026年暑期实习招聘加速中~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fdf0ed6b2488eb6b8e27dac699d0deaebf011b4f5e4487d84ee7582cc6c55ea2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HLFwY5C6JTQsEw77ktJVag" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "cf5c5e6e9f5c9ce76c2eac19883f0e3ea9bd1058fbf0693ed80aa111b8f1ce66", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg1SDJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "吉比特&雷霆游戏2026春招及暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/厦门" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2f3937b9cdeac756fb83be053a3e7621806ee468b54c02ef8aff7e31e521a8ac", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VXTx0jYcg9N4dkwHjuYUmg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "352f6ac24d0cef9edb9d91ff1b2f5068d05babb52ba4540784028080669d3313", + "text": "https://hr.g-bits.com/web/index.html#/post-web/post-list/?referralCode=4AP9A8", + "url": "https://hr.g-bits.com/web/index.html#/post-web/post-list/?referralCode=4AP9A8" + } + ], + "value": "https://hr.g-bits.com/web/index.html#/post-web/post-list/?referralCode=4AP9A8" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6FPJl", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中控信息2027届实习生招聘启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fb583d5f9048a41311aaaffe8de8105120b3809622c84862cc230d71d798e2a4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lpn6K4LqTHIiNh61KagzlQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5ce1629cdc0a9555955fa8d1674cdd6fa0fec76ea6c12c862bef6e8187168f80", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rU6IoV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招丨国泰海通资管2027届校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "badbef93ac0582f5fa924179e9fa5e863407bd3fada59f08ca34092d2111cf8a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DZ21qIoaNj9YNamT1rZfew" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "24183aaba256a3ea98fec65b7e264d00b25ee18054ec400901e66e1eacc13c84", + "text": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9086885", + "url": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9086885" + } + ], + "value": "https://xyz.51job.com/consumer/pc/home/index?ctmid=9086885" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZOcRi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鼎一校招 | 2027届实习管培生校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774281600000", + "value": "2026-03-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0d7dfa80ba9d89e9a6161b420b47f986d7ab36e4453342cfd4b46be8b5e7eec8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4qySb7swu7YrV7RZIvZEpw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2ca658379a2157f25c884aa8e021703ba4041bd00cace494d5cf2b651f26ce20", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZr5LZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广药大药房2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广东/佛山/东莞/湛江/清远/汕尾/深圳/汕头/河源/梅州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "15df0c70c0b1586157569c718e0a1b0e95a120da2f91be97a99a837213fe58be", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5v10VCnbLzeZAphjQpnAjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "19bc549c8506e8448bae4bd438362b7bd27bfedf60b71b10041f2996051085ed", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rb6Z1h", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "从校园直达金融主场——南华期货2026星火计划再启航!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京/上海/深圳/广州/武汉/成都/南昌/西安/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d69a1262a00da628305cc402d6f01ca542a0d7f20f4ad3564bf251a6fd6167a2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/0Iv5-SqZbxjB2WNA4LH4kQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4746b8151cfd99b4d6795ab6698a0ffe75874b349d2d97e4b2239da6bb801436", + "text": "https://nawaa.zhiye.com/intern/jobs", + "url": "https://nawaa.zhiye.com/intern/jobs" + } + ], + "value": "https://nawaa.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rC4js9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "亚信科技2026校招全面开启(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0f11471f786350f865e7c26efc5d8b5e3b9a427539fe612c067b95b4d21a151c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uFTHDWuDWGzmLiScQhjqWA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e46b4165be650798d32096f7435d8c61b40f22e87d92e32502be65f8d21d85b7", + "text": "https://campus.51job.com/asiainfo/jobs_trainee.html", + "url": "https://campus.51job.com/asiainfo/jobs_trainee.html" + } + ], + "value": "https://campus.51job.com/asiainfo/jobs_trainee.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg0cor", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南方电网产融控股集团有限公司2026年实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bf598ad684a4ab76b349d40fc05d5314ba646e4b8f42c6dac7c7fb8971a23724", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/m898-VvF5Q_r7MJGd3wAsw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "1e78e9682a1ce3b2d5f28f7cbc79d26f5cc407310c0ee7d29f8510c544ebf8c1", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roNBV3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "金山云春招喊你发光发热!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d8bf0abe0999d97b55b23900b25d3dc64b7576dda3d2384e952bebb1d5a955dd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XIXt0vdVVhOLl6FNIdQqTw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "fe5106e8f2b99d8aad33c422334b319b7602f8467138d84bcc5b6bb9a789f607", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIrpKx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "此刻,锐见未来 | 锐健集团2026年校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovYJGt" + ], + "value": [ + "生物医药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "de2c59e654992851213f6fb7d42fe8346648916a4f560259393cc14e9044ca7e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9gOoAgXaA-MSN79ZcmfgEQ?click_id=43&scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c3c2e3fdbf02cc5158273f9ccfb64ca2e33e4a45ba25ea59cbc45100fc904655", + "text": "https://campus.51job.com/rejoin2026/p2.html", + "url": "https://campus.51job.com/rejoin2026/p2.html" + } + ], + "value": "https://campus.51job.com/rejoin2026/p2.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHRzfm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西部数据2026校园招聘春季焕新启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5b3ed49ce90a356ff0a68cc3a601dd407de15014c5b8ef8e6edab5261b748491", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/C3UAyPxpVUF5A-9M85M8ow" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "34437d632cb4bc26260d7d74174bf305d6525b9382d67a8aee628737212f723c", + "text": "https://xyz.51job.com/External/Apply.aspx?CtmID=5752725", + "url": "https://xyz.51job.com/External/Apply.aspx?CtmID=5752725" + } + ], + "value": "https://xyz.51job.com/External/Apply.aspx?CtmID=5752725" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNud0b", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "未来光谱科技 2026年春季校园招聘启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1774108800000", + "value": "2026-03-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4336c5cbe54142ce4426e938dfa170ee95928d7ced731883ceee39c31394c2d1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/r3a8ogV_rq4xa8fEeWJaoQ?click_id=39&scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8b7b04ec7b5e286102f6749f87a95ecde2a5f1bf5fcebc8aaf095751b5c61e77", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ri5dMw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "伏达招聘 | 伏达芯起点,春招正当时!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773936000000", + "value": "2026-03-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥/上海/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "50b05e35ef4c7d9e4687c5f937320f48f975f064ce0e057636949011da1b2549", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4aKYl6KctGRHIs9m5NYh9A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "adbf3ecf10c49711b436ebbf66c65a822ea80d83e415d055cab9444c68e85c1b", + "text": "https://app.mokahr.com/campus_apply/nuvoltatech/29077?sessionid=#/jobs?page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus_apply/nuvoltatech/29077?sessionid=#/jobs?page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus_apply/nuvoltatech/29077?sessionid=#/jobs?page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBnZVt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阳易科技2026届春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773936000000", + "value": "2026-03-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6dedb9cb1e7635e39ebf2ac3f5a6a19cd90f9967179f3e4285278084600a8108", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LYr9YU1a0oFs_ro7PjfrvQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0b9724a0bba187fb4ba267aa8cae60b5aeebbdff0ae0f2f664e1e8fce777df3f", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ri772t", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "福建古雷石化有限公司2026年春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773936000000", + "value": "2026-03-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月3日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oXER6i" + ], + "value": [ + "中外合资" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "福建漳州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "82fb8b8178a810f7288e1cc25e495a438db3b705844968c8bf5ae79e47040ac5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HOtFOfCkzwaUi_jkZfjDDg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2063b1b92ee775a8bb7a0bf99432b247f85db6ef8bc13fc6bf486b23b63fa424", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riCQah", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国民生银行2026实习生招募火热开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773936000000", + "value": "2026-03-20" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a0f80b379f0398dbb09914d443f0701734c63f34c87f94f5ef486cf089bd2e00", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YdetQ0Wc-SrKiOKQ_UK1Zw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2561829357fa7c414cd50239178ea515739127b8b9df5192e34a0899397df86d", + "text": "https://career.cmbc.com.cn/#/app/recruitment/trainee", + "url": "https://career.cmbc.com.cn/#/app/recruitment/trainee" + } + ], + "value": "https://career.cmbc.com.cn/#/app/recruitment/trainee" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRDJ8U", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "洋葱学院26届春招&27届实习开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o3l8n8" + ], + "value": [ + "智能教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "7ca781ac4c63b275a787ef951c0a9e5d59fdd86e2b7ba3fae49a5c2b12611e40", + "text": "点击查看", + "url": "https://guanghe.jobs.feishu.cn/s/UiCAOcb-5Rk" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "96a95c79a86fd5254ab3fe3fb3180abe7da9bd60f8adcb47ca14d89a00e61c97", + "text": "https://guanghe.jobs.feishu.cn/s/UiCAOcb-5Rk", + "url": "https://guanghe.jobs.feishu.cn/s/UiCAOcb-5Rk" + } + ], + "value": "https://guanghe.jobs.feishu.cn/s/UiCAOcb-5Rk" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rM0Doq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026 春季校招 | 加入孛璞 与光同行(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ddf5624f87e11c9167fe9a294676b94bb8be2ff9b24c67d5fe208b23adbb64d7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/COZnkgqtbiedSzCR164TzA?scene=1&click_id=51" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f186a7e8303256d62ac45bdcc580f4e0b0cad4e78cd67c19d775890a1a3f4f0f", + "text": "https://wx.beeplux.cn/graduate?title=%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98", + "url": "https://wx.beeplux.cn/graduate?title=%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98" + } + ], + "value": "https://wx.beeplux.cn/graduate?title=%E5%AE%9E%E4%B9%A0%E7%94%9F%E6%8B%9B%E8%81%98" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKaEiP", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 钛动科技2026全球春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27f82a47cddbd1082179a2f81d04fd5bc4e5fe5c8012531599cca73149d9ae1b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/P0t9ymDywW7QPgNDcX81RA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8315f696f523bcbf093bfec43ac8c6d782a5184f786a60621f1b84ad8e284cda", + "text": "https://app.mokahr.com/campus-recruitment/tec-do/41717?sourceToken=e84f5e1f268b393430cc76c14c91feba&sessionid=#/jobs?zhineng%5B0%5D=215794", + "url": "https://app.mokahr.com/campus-recruitment/tec-do/41717?sourceToken=e84f5e1f268b393430cc76c14c91feba&sessionid=#/jobs?zhineng%5B0%5D=215794" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/tec-do/41717?sourceToken=e84f5e1f268b393430cc76c14c91feba&sessionid=#/jobs?zhineng%5B0%5D=215794" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPUqqY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "斯伦贝谢2026春招正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/惠州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "271e1ad5140cfd5100253fc40c71b0114ac060d0b8ff6db9cd0e4234793d6a7c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PRHAc0xEANT7v12Kq1tniQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7c967f8bb476c131cef00e4076adb7bed139d99f0a9ca51dfca1f20eda5305e4", + "text": "https://slb.tupu360.com/position/list?enter=menu&type=INTERNSHIPRECRUITMENT", + "url": "https://slb.tupu360.com/position/list?enter=menu&type=INTERNSHIPRECRUITMENT" + } + ], + "value": "https://slb.tupu360.com/position/list?enter=menu&type=INTERNSHIPRECRUITMENT" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXG1GG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中欧基金2027届暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0cab5ecde0593df9d823f3c9f918fcbaa522fe6e8482762efe76805735e64a62", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cQyHdqCswWJ4QxBSHjNtnQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e268f542431c0ffd8681265c53d8b498036cb5eef8171861b63fe18c16994672", + "text": "https://zofund.zhiye.com/campus/?PageIndex=1", + "url": "https://zofund.zhiye.com/campus/?PageIndex=1" + } + ], + "value": "https://zofund.zhiye.com/campus/?PageIndex=1" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rC1LEy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小红书社区工程「产品工程师」2027届实习训练营火热招募中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52d85a0ac945e5426af008f0dbb17013522f78fdda120dfed6d7a2a80e250b32", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dLFpsOSNy-KfPU8zlFiFSw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "22ab414e5eb9eecb64998cb037ef71210ec3c3cfa5a3b3d7564baa605266d14b", + "text": "https://job.xiaohongshu.com/campus/position?positionName=%E7%A4%BE%E5%8C%BA%E5%B7%A5%E7%A8%8B&sessionid=", + "url": "https://job.xiaohongshu.com/campus/position?positionName=%E7%A4%BE%E5%8C%BA%E5%B7%A5%E7%A8%8B&sessionid=" + } + ], + "value": "https://job.xiaohongshu.com/campus/position?positionName=%E7%A4%BE%E5%8C%BA%E5%B7%A5%E7%A8%8B&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtU4iL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘丨世辉2026年晨辉计划校园招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773849600000", + "value": "2026-03-19" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ozWEcR" + ], + "value": [ + "事务所" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "337dbb6e4d80fe5345dc48905dce808a79376e7b899ac77ad2a286db81e8a2c4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HE5zZmsmiHG2UBoIGG2yEw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "15abb4bfac8fb328f53edd44486d750bb8b038c44e3782326d2ecc5f0e49756e", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rY8Hry", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Shopee 2026领航实习计划正式启动!(非研发岗)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月17日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oxBeFs" + ], + "value": [ + "跨境电商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/北京/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e7127072a9e47d6ff98e77417b4a665519492462cc1642b7a3133f6156b92c4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/M_Jm69Jfvqw7NRM2fg8OJQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4a7cadc7200d8e4d51c5a9b8afb296344d969367b6048e7cc24483d289eb45d0", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ravIGm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "西门子2026春季校园招聘,开招!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f7b20da76b497bbe215aab0c39a58eb0ead3d4ac5c246071cd844d163a2beca", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7U8Ja5e1ECehHq7nlg-rDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d87ba09e7c5a1faa3e0ed28b74d917a7eca0d25b9779eabf6348e6a4dcfb5fcc", + "text": "https://siemens-china.tupu360.com/pageQrCode?targetUrl=a7f4739eb94ec9ef120576839eb4650abbcaa55c15715ff62393107d428a051b2d4cfa74c95209e2b84fb8d19dc7bd3a3b5a433059fdab64913dec3267c4d339d6dc9fb1bd90ba09c07bc7bfffa767e021280c2556307b8f306972d5ee7433c983042414", + "url": "https://siemens-china.tupu360.com/pageQrCode?targetUrl=a7f4739eb94ec9ef120576839eb4650abbcaa55c15715ff62393107d428a051b2d4cfa74c95209e2b84fb8d19dc7bd3a3b5a433059fdab64913dec3267c4d339d6dc9fb1bd90ba09c07bc7bfffa767e021280c2556307b8f306972d5ee7433c983042414" + } + ], + "value": "https://siemens-china.tupu360.com/pageQrCode?targetUrl=a7f4739eb94ec9ef120576839eb4650abbcaa55c15715ff62393107d428a051b2d4cfa74c95209e2b84fb8d19dc7bd3a3b5a433059fdab64913dec3267c4d339d6dc9fb1bd90ba09c07bc7bfffa767e021280c2556307b8f306972d5ee7433c983042414" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riYiFX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量化蒙新  非你莫“暑”|蒙玺投资2026年暑期实习招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7a767fe13d715e0fd20436776e3602fd4811bdeb958dae06ff1b1874356d003f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/759FY6OvtY3lVdFdnZxR_w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e263235922b70421e58794255b3353bea16b4fcdf265f8ad6866fc39e77fe366", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcMmKa", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商银行信用卡2027届暑期实习生招聘开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月23日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6e548c60c29275fed20bfaeae53f38d493dc100be1d19fe13a59a5fb6fb5b037", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QEGvv0t6kemAhLCBENwdBw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b64055f5b288b8e1043802b57aeb54183d6f7d751ba98a15fb1919164f1a96ac", + "text": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82", + "url": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82" + } + ], + "value": "https://career.cmbchina.com/positionlist/DF94FD6D-26D3-4A19-9E69-577C4BA1DE82" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3WEG7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "千帆竞智,曙你未来 | 千曙科技2026春季校园招聘(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "363da5f7b3d86ef745a01c84aa620805d146fbaf991d3332319091deb4cdd1fa", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/rH0VhBLlzyOaaO2Ba_9gcQ?scene=1&click_id=62" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5176a3e70cebbd7305bc3587c53a920ad7a2b9f4c9610713e99b0bfbaeb0628c", + "text": "https://tranxmart.jobs.feishu.cn/511078/position/7616253227473996042/detail?spread=DFF4R9N", + "url": "https://tranxmart.jobs.feishu.cn/511078/position/7616253227473996042/detail?spread=DFF4R9N" + } + ], + "value": "https://tranxmart.jobs.feishu.cn/511078/position/7616253227473996042/detail?spread=DFF4R9N" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rY8rZT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "天弘基金2026年暑期实习招聘全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月5日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/广州/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "badfc447577d69ee526618484363c3a74121743789000845ba04f0d3a4b44359", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iut4a350DgpUFXPE6F9Zrg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7e831800ca0f385a4302d75f5ab1f7dc0189e8afbdfae79e4fdab6829c1232e8", + "text": "https://app.mokahr.com/campus-recruitment/thfund/46219#/", + "url": "https://app.mokahr.com/campus-recruitment/thfund/46219#/" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/thfund/46219#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEESDP", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "解锁你的“芯”未来 | 利尔达科技集团2026年校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oxCURB" + ], + "value": [ + "物联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35a6a29c7bef0fa40c4b49d458f5d68ae07e0a314ddad4026a1fb238b7c2fee8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7Tb1p8OeHvzr8d4Dskn4nA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0a3a168366c16023cc75d2ca5c7ebc8598fce44279a541c0116072c4b0fbff1d", + "text": "https://app135149.eapps.dingtalkcloud.com/campus-recruitment/lierda/100004103#/", + "url": "https://app135149.eapps.dingtalkcloud.com/campus-recruitment/lierda/100004103#/" + } + ], + "value": "https://app135149.eapps.dingtalkcloud.com/campus-recruitment/lierda/100004103#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rw58rh", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "博时基金2026年春季校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aaedd57e27675eb9020a8ca728964416642dbb6110a14b8286dfc3f36a54a2cf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SjDIhb8awkjeQe_7QXvu7w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2bdc1c95b382d07a7e4992064de0416b718f307535d9c35c70f6ba5fb81e2c55", + "text": "https://bosera.hotjob.cn/", + "url": "https://bosera.hotjob.cn/" + } + ], + "value": "https://bosera.hotjob.cn/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFAy1s", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华勤技术27届实习项目启动!等你来转正!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/西安/南昌/东莞/无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f3c8b6e8c3f43e42142f6b90186919cb54a8171b2613ca30e4dae2094a1e9cba", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iA0qg6Ph67npYl-bBPgEpg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "782a8b51c71df4fe4130e9dae6ce5c125454d528f66f47619d174d3ffe3707a9", + "text": "https://app.mokahr.com/campus-recruitment/hq/45417?sessionid=#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/hq/45417?sessionid=#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/hq/45417?sessionid=#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPTWQs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万兴科技2026实习生春季招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙/深圳/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3f4fcd3456510648e6f891fd945775fff590f52b00ebab5d3f5a313d8364ec3e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/k0b8ifkiICXNlqs4P8lrug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9056e018ab9fa19bd9c4fdffb803648fe4f0fbd63430fa06d0a7c008e27bc9af", + "text": "https://wondersharecampus.zhiye.com/Intern/jobs?activityGuid=dc7016c5-8bf5-4092-8028-ff49b9118550&ActivityJumpPage=PortalPage", + "url": "https://wondersharecampus.zhiye.com/Intern/jobs?activityGuid=dc7016c5-8bf5-4092-8028-ff49b9118550&ActivityJumpPage=PortalPage" + } + ], + "value": "https://wondersharecampus.zhiye.com/Intern/jobs?activityGuid=dc7016c5-8bf5-4092-8028-ff49b9118550&ActivityJumpPage=PortalPage" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLzZaR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "全擎启航,信达未来丨全信股份2026春季校园招聘全面开启,邀你共赴新程" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "773d1e23eae1c936e358bda0529973757ddc195e7923e25bc89faffdf0cf9372", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/q_r6vqTM497ypxXZxx4WoA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "de7356f51df9226254d689d1c03b74434a161209155de3875bf4b18003245d69", + "text": "https://qxkj1.zhiye.com/intern/jobs", + "url": "https://qxkj1.zhiye.com/intern/jobs" + } + ], + "value": "https://qxkj1.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5uP0m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广发基金2026暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月26日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e2b0a034e817be05df39dd5be355dc961aceb2413a5cc8b7a98b7d64352de95d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/xuPqMOmy34QSEJgj2YjfZA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26acac9ca48222bfea6d81f6466c4321ecaa3b71585cb51909a1fd4b21acd1a1", + "text": "https://gffunds.jobs.feishu.cn/833056/?keywords=&category=&location=&project=7618098423036840228&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=", + "url": "https://gffunds.jobs.feishu.cn/833056/?keywords=&category=&location=&project=7618098423036840228&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "value": "https://gffunds.jobs.feishu.cn/833056/?keywords=&category=&location=&project=7618098423036840228&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=&sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhSbrs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "轻舟智航2026春招(校招&实习)启动|与顶尖团队一起,创造物理AI新未来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/苏州/上海/芜湖/金华" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5d1eab3abca36264829e74b4d31ede5a013fa445db2fb4b487dedb6b8ec948f2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eF4X2lIv4woZ-4Z3AOcz1w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "069bedfed68b7ffd138922b7c32afcc9c7b616e6dcd452a04f8a134891c8acf9", + "text": "https://qcraft.jobs.feishu.cn/index/?keywords=%E5%AE%9E%E4%B9%A0&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=", + "url": "https://qcraft.jobs.feishu.cn/index/?keywords=%E5%AE%9E%E4%B9%A0&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "value": "https://qcraft.jobs.feishu.cn/index/?keywords=%E5%AE%9E%E4%B9%A0&category=&location=&project=&type=&job_hot_flag=&current=1&limit=10&functionCategory=&tag=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdkKDN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "泡泡玛特2026春季校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773763200000", + "value": "2026-03-18" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oT9AsE" + ], + "value": [ + "盲盒手办" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a77d18d57b7c4a80de458222f9dbb2cfe9624e16228b1c2843c97cdac5f578f8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9l2cSFuxozgYFkOiL0JvYw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "80fe0d5871421012eb037aeea1bcfe64529d4983d4b43e95d0474f83ca4452dc", + "text": "https://popmart.zhiye.com/intern/jobs", + "url": "https://popmart.zhiye.com/intern/jobs" + } + ], + "value": "https://popmart.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4bmnA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "聚宽投资2026暑期实习报名开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "93e0045c1024aa1b22afdc0941fb201bfb7d09a6acb87f395aba425c56c453ef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7TfnNl1MO8ox8ztftiNNnA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ddb1806ad3c8d75a5c34f2c1f544c96eb6d7e3c6238a38a77410bae96fd9d0c6", + "text": "https://app.mokahr.com/m/campus_apply/joinquant/92347?recommendCode=DSURaz8E&hash=%23%2Fjobs", + "url": "https://app.mokahr.com/m/campus_apply/joinquant/92347?recommendCode=DSURaz8E&hash=%23%2Fjobs" + } + ], + "value": "https://app.mokahr.com/m/campus_apply/joinquant/92347?recommendCode=DSURaz8E&hash=%23%2Fjobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "re0o0P", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寻热爱游戏的你|锐我科技 2026 春季校招正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8305b8605d4f3145c71962e523684f980dea3279d53d772b0fedd140558b850c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/c_Gj7vkgSpze1wTs61qrKw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "79865fd19dc7cde5c5d79c74a1df80bc74cb1f6735fabf1d3bb7f3637a28aa64", + "text": "https://www.ruiwoo.cn/Ruiwoo/Hr/index.html", + "url": "https://www.ruiwoo.cn/Ruiwoo/Hr/index.html" + } + ], + "value": "https://www.ruiwoo.cn/Ruiwoo/Hr/index.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWkOPc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "虹软科技27届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f415305a725c81eb78c45774fa3994694582d75c808a6aee0dc27b5b28208a4c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uJrQPBcHYtSzzCR1QWxPGA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "64cd06cf7b58e33c4f0190495dd8407f7f3b738cb5666fd215ef064565cbfd44", + "text": "https://www.arcsoft.com.cn/job/CadetIntroduce.html", + "url": "https://www.arcsoft.com.cn/job/CadetIntroduce.html" + } + ], + "value": "https://www.arcsoft.com.cn/job/CadetIntroduce.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSftyp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "喜岳投资 2026实习招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ec017ea876734ba2c274d7818d61844172548a173325affecb3e730d5e54d117", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vle4ThDAHMdaA46WhvEKxw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4a1253ae8db35f99b94bd73b5a3e97dbf7ef8303271736366b7b85db4c155c98", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rniPSn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "长川科技26届春招&实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京/成都/哈尔滨" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "228860f616a38c89e007d334af91d79d14091ae50fc535821403ab214161c68f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DO_U3_Y65yUzkMHujQ-EEQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "20c897f5a1f8c08fd09bdea4a25de4956ae98749b3cd11350c01a07f9f237d66", + "text": "http://hrm-out.hzcctech.com:8083/RedseaPlatform/zhaopin/zpChannelQrCode/b1751a17-ed8f-4379-9143-48c804f5c50b/officeWebsite.mob", + "url": "http://hrm-out.hzcctech.com:8083/RedseaPlatform/zhaopin/zpChannelQrCode/b1751a17-ed8f-4379-9143-48c804f5c50b/officeWebsite.mob" + } + ], + "value": "http://hrm-out.hzcctech.com:8083/RedseaPlatform/zhaopin/zpChannelQrCode/b1751a17-ed8f-4379-9143-48c804f5c50b/officeWebsite.mob" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHj3dC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招丨新产业生物实习生招聘启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/全国" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "26c12f697ebe146e99e6c1e3236dd12dcc2d65678c215d54dc4632e7abefa83b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AZjjsDBTKA18C6PnkGQuSw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "82cd1a57544e58c28f25a316796460e23e6941892fa57056aa88bcae5a4a772a", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMyKEm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智享未来,芯启航!中兴微电子2026年实习生招聘等你投递!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/上海/西安/深圳/南京/北京/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "140e3e88184f3453f76575749c2816eed601a62ac4423e79e9f1236dc5be0c6c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/p9ce-WqjS3hSGYFCKQY0rQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "47f135225bddfc0cd42875c9ab2483f5adc8d2731ae77247128c57111369bf18", + "text": "https://app.mokahr.com/campus-recruitment/sanechips/102705?sessionid=#/jobs?project=100120087", + "url": "https://app.mokahr.com/campus-recruitment/sanechips/102705?sessionid=#/jobs?project=100120087" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/sanechips/102705?sessionid=#/jobs?project=100120087" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtcCCp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2027届AI鲸英实习生招募|让AI从云端落地,做看得见的智能" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/厦门/福州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "053f6c5b1d26fa7abee8fb62c57c1f3ef09714b9503f53519de71ce23f6ebd57", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3kOOLVYtO5qsGR5Uw8F6lA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "776fb4f05bd02e8cbd8844553a536b1e87c5f588abba6625c017ed58fd742504", + "text": "https://iwhalecloud1.zhiye.com/intern/jobs", + "url": "https://iwhalecloud1.zhiye.com/intern/jobs" + } + ], + "value": "https://iwhalecloud1.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUcbRf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "永赢基金2026届春季招聘·2027届暑期招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773676800000", + "value": "2026-03-17" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "163f4a10f1f33b3b6bd370f2dab00f4c086aa830aba48cc4bb9643fdf5de0f39", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RXYMM1mNeOO9t3SIxhbLeA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "850775e81dc843ee2107d62d008389ade6d50c89d2c096d094c3173e2296788f", + "text": "https://maxwealthfund.hotjob.cn", + "url": "https://maxwealthfund.hotjob.cn" + } + ], + "value": "https://maxwealthfund.hotjob.cn" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r60geE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 国泰海通证券 (总部) 2027届校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3c434fae29d8ea0eec48be57bc64fd7927044f6508b2b2c4e927b6990c7aa3d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SfzzBBdrIS5TYA7A50CKMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "b18bb1bf888ceabd281007dccaacf762df037d7db3e461f645ad8fbc7dbcd3d7", + "text": "https://hr.gtht.com/recruitment/main/recruit2", + "url": "https://hr.gtht.com/recruitment/main/recruit2" + } + ], + "value": "https://hr.gtht.com/recruitment/main/recruit2" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rddxlr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "火炬电子2027届校招启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "泉州/厦门/成都/上海/广州/北京/南京/武汉/西安/洛阳/青岛/深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f2eab5d772e7a090aee0de1e22d02058572540fb50e2e3dae4aa49a409ed9102", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lTrnQE80HrSX66g5dEF6Hg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ff5c170a37df2c23997ce4879fa0e92e4f768d2f7188b225d49311c05ae9f7df", + "text": "https://xyz.51job.com/consumer/pc/home/index?ctmid=8931750", + "url": "https://xyz.51job.com/consumer/pc/home/index?ctmid=8931750" + } + ], + "value": "https://xyz.51job.com/consumer/pc/home/index?ctmid=8931750" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rh3emv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Klook 2026全球产研校园实习生招聘启动!大咖Mentor制,神仙公司等你来撩" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/新加坡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f210ff462101da51109d9c2d6333577183ad8eb2cc0ec9c0509562c2d2dfa38", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gLwMqUhPsvh0DmhxZllxuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "91296c18cbf3bacb92ee9dae7a28fcc38778be6b8439f2db2f993ef60210036d", + "text": "https://app.mokahr.com/campus-recruitment/klook/128531?sessionid=#/jobs", + "url": "https://app.mokahr.com/campus-recruitment/klook/128531?sessionid=#/jobs" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/klook/128531?sessionid=#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIVuxq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度2027管培实习生计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f0e6a3bac373e8434aa43cad30582fd46bebd7bdd6a04b7675749b0aee40680b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/99jVJelHnP-zEfN3mBflFA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6f57d30d4b51e4e00a3179cb00745f33bf641928392267060af472cbea835401", + "text": "https://dwz.cn/3rCaOKcq", + "url": "https://dwz.cn/3rCaOKcq" + } + ], + "value": "https://dwz.cn/3rCaOKcq" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPNms8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航空工业综合所2026年春招&实习启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c792907b83a456b677b92554306955b9200caf661413f316ae901dbbf046ae9a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WLhVqOIhXZbpGv-3XVIyXw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "495b277edc1ae3dc8e71098bace10e58cb6cd8838cf732ff81864c7443425d55", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBExWs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "NVT 2027届全球实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9770bafc0650c2a45c6cf5b8fa6267d2d15f9006932a8871606145208d0bff16", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RyDQkevX8kCJvPTuT3hwqA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4eecd875e91f83e6f255285310aa8a8b0c329cb03b95ca8398f85160f8a15026", + "text": "https://nvtpower.zhiye.com/intern/jobs", + "url": "https://nvtpower.zhiye.com/intern/jobs" + } + ], + "value": "https://nvtpower.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpxuDo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026年辉瑞中国先锋轮岗实习生项目正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月12日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a915ad593039181a78189718f3df364985b6c3270ee09fc43f87645b0392abd5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4metKC5Iq7a-9t3xDo_5Dw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f8f367b4b6c8a76d053b4101c33248ff61863c99bb287860baf6eb66e2fc59cd", + "text": "https://careersite.tupu360.com/pfizercampus/position/index?recruitmentType=CAMPUSRECRUITMENT", + "url": "https://careersite.tupu360.com/pfizercampus/position/index?recruitmentType=CAMPUSRECRUITMENT" + } + ], + "value": "https://careersite.tupu360.com/pfizercampus/position/index?recruitmentType=CAMPUSRECRUITMENT" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBs22F", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卡方科技2026年暑期实习「摘星计划」正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773590400000", + "value": "2026-03-16" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ce1509eb83c8d48d8b7e04fbf19de60dcb70ec7ce897aacd39aca6e7d9c0cde6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3L8Q0suD09uol2cX3uhJww" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "be91676af0cea4618543f420754f96c069bf852ccb2fb774af25391c4ccefcbe", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzY4q8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华为2027届实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773504000000", + "value": "2026-03-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/东莞/北京/上海/南京/西安/武汉/成都/苏州/全国其他" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "56f97733501519cc7b6b951aa0ad9aa5c73e40ac040caaba7abcfe89e71d7c90", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vGhUrcc2IuQ-nYS7tgbJ1A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a31a839e55b79c1e18eb38092ee4c8547440f36236bf50248a916183ec0ed9b7", + "text": "https://career.huawei.com/reccampportal/portal5/campus-recruitment.html?jobTypes=0#jobRecommendBox", + "url": "https://career.huawei.com/reccampportal/portal5/campus-recruitment.html?jobTypes=0#jobRecommendBox" + } + ], + "value": "https://career.huawei.com/reccampportal/portal5/campus-recruitment.html?jobTypes=0#jobRecommendBox" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLZcQL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "NVIDIA 2026 实习生持续热招中,提前锁定秋招“入场券”!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773504000000", + "value": "2026-03-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8c39f6ddc020ded4e38fd6c1c422275e2bd795ae099447b65ecafb3bf1370008", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7ug4KhMBfO_5hZKVc2h8RQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "53fad9c3701e4d05f4d56e6c3f0d065e95e12f9d2e2461265d55bacc20f031ae", + "text": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite?sessionid=&workerSubType=0c40f6bd1d8f10adf6dae42e46d44a17&locationHierarchy1=2fcb99c455831013ea529fe151e3323c", + "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite?sessionid=&workerSubType=0c40f6bd1d8f10adf6dae42e46d44a17&locationHierarchy1=2fcb99c455831013ea529fe151e3323c" + } + ], + "value": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite?sessionid=&workerSubType=0c40f6bd1d8f10adf6dae42e46d44a17&locationHierarchy1=2fcb99c455831013ea529fe151e3323c" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riOidM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【招贤纳士】丰尚2026年暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773504000000", + "value": "2026-03-15" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqnzsD" + ], + "value": [ + "制造业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "扬州/全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aa4a93f3701a98115fcc6d42f8277836810324a223bb1a2b8ba85198dead0a84", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8MQzRQZ_nJsIk7eKpxtDlA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "609412d7adae6ec9ebb481933396e180e75c3fab3a87c1fc09ee900820f4af29", + "text": "https://famsun.zhiye.com/intern", + "url": "https://famsun.zhiye.com/intern" + } + ], + "value": "https://famsun.zhiye.com/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "reofYn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "强生2026春季校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "70233edb3a3a4fb470f4a235fceda790720a4a8bd888b5d2d48c5d0f40284930", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cfrnia3YC8_iPh4yOJ8IGw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a2395570df428ead1fac96bdc77369fcf351cc5405546da5c4186b05ba28014", + "text": "https://chinacampus.jnj.com.cn/jnj/home/index/#/deliver?selected=", + "url": "https://chinacampus.jnj.com.cn/jnj/home/index/#/deliver?selected=" + } + ], + "value": "https://chinacampus.jnj.com.cn/jnj/home/index/#/deliver?selected=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBHGxw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "联通数科2026年实习生招聘火热进行中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/南京/西安/深圳/成都/济南" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "45808a3347d76c3f9f4355b84a86bc7dac77513448485b16056d2d05a5365ba7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EhltHuJ-H53fZPQnCfn96w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f3edf5d616e432506b3ca754e58cb56746e98b5054fd213323f9b40928b44325", + "text": "https://cudt.zhiye.com/intern", + "url": "https://cudt.zhiye.com/intern" + } + ], + "value": "https://cudt.zhiye.com/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSjd6G", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "AMD 2026秋季实习生招聘现已开启 一起奔赴“芯”旅程!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ac32b75e6636b2791c78b750dc6831ba0987cbf1106ed17c9373623d30632a66", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DFvf7FOapQub15crB-TuEQ?scene=1&click_id=29" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9351998ef0df1b97d163d128ba8ba229a87faebfc0100456834abe84c1f94384", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rs5um8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中科光电2027届实习生计划正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "27241676aeadbef528fb7d949c31c0fb807620bfa363552e198edd2c783b1368", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PchYKFc5YGNP3AFft_CcCA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "eef857789c69e60e9fd99ff1ce1898242dd83f2f1ca8a6028b825b7d82bcc7c6", + "text": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?commitment%5B0%5D=%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?commitment%5B0%5D=%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/hdzn/151324#/jobs?commitment%5B0%5D=%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2sg9g", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宽德投资2026暑期实习现已启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1d7437ee12bb3a5011deda35dff0f3667247be68f15deeef703cfebbde5d6f12", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/woLVSYnuKVOyW6xp4mpWvQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "11e0e1b2ee01593864648e61d3749195ab4d394d282e34158bbf9e5edd2cbfad", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLsbMV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "邦戴数科2026暑期&日常实习招聘开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ff94ee79281d1adfa35cd5e4a20c8cd06a864393c9870b8095b82697b4bf5c38", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QF__FjrvXH3Cn2zZa1yRVA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "7d8cd09c9eda17e246a270f4538a21914b90b05c64424771faa93f441c7655cf", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxZtQ6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "游戏精酿2026春季校园招聘正式开启!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/重庆" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4f99796286ac6d2439d945303519383378ae47ca2289d0a97c23cba5fcb4be0d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/foV55D4_vNAP0L0iSQ1A9w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0297d26c5b5acc013dbaafa26393a95af8026b624540340a0b6ee865cf9d855d", + "text": "https://gamealestudio.jobs.feishu.cn/007955?sessionid=", + "url": "https://gamealestudio.jobs.feishu.cn/007955?sessionid=" + } + ], + "value": "https://gamealestudio.jobs.feishu.cn/007955?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkpSAg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "极飞科技 2026 春季招聘,让热爱扎根在土地上(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/郑州/东莞/新疆" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ad9a06060433681e79ba20d4dcc7482b89d137083fd9489e791747db64480fed", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/gkR9-csTjPO_f5KHAUYBCg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8da33b3152fe04bad4fe20c883b91b6abb813cbc6bf560c381cedb38ef89712c", + "text": "https://zhaopin.xa.com/intern/jobs", + "url": "https://zhaopin.xa.com/intern/jobs" + } + ], + "value": "https://zhaopin.xa.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rb8mxW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "非凸科技2026春季招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773417600000", + "value": "2026-03-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/成都/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6fca30e970962af34f6968af81fc1cced611ad876d85c82fa45966e33307a391", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/AKWnlES-wU0uI5Diu7f0gQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "90a479f7f179ecdffc9a7c9e67d10465fedc216a633dc12fa4670bb7b8b39612", + "text": "https://app.mokahr.com/social-recruitment/ftkj/146869#/jobs?295097%5B0%5D=%E6%A0%A1%E6%8B%9B%2F%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList", + "url": "https://app.mokahr.com/social-recruitment/ftkj/146869#/jobs?295097%5B0%5D=%E6%A0%A1%E6%8B%9B%2F%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList" + } + ], + "value": "https://app.mokahr.com/social-recruitment/ftkj/146869#/jobs?295097%5B0%5D=%E6%A0%A1%E6%8B%9B%2F%E5%AE%9E%E4%B9%A0&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rL6m0t", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "AlphaGrep 2026暑期实习招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "44e9a4342c040e507b41ce55f733cb535493d23648fa857240a7ac4700208d71", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/l6NWJXROkRdxzxnQWkyP4Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "bc81a00673c4e8cd8bca5ea59448c2db411207d5ca1e0c45cf4c0a90a7261eec", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNzOvv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "驭势而上,智启新程!驭势科技2026春季校园招聘全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "7月1日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52fda17e9904f3b4f5b236d9843b28b527d35335190fcba6af82b1692e58d663", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NMiRx6GLzjlyai9swwqM2A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "21a0045dcd4abab3460b1aa8865ab5633ec6bf9a232c73bace76d6d5ff4bb2af", + "text": "www.uisee.com", + "url": "https://www.uisee.com" + } + ], + "value": "www.uisee.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIhVtz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Uranus Research | 2026年春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3e700a56ce82b2806909b2f5f927aff1a464faffda611136da3d2ba58133fa8b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/JAr4EjH7_vPS5V-9o9mt_A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f2b165daec7fe19428a14bd9a7ea6912b752bacbf9cb561cd49eb5064e85fbcc", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5QeXu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | 杉数科技2026届春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a751e8563dc203ad15625556a281cdb82c65daf0fc0fab8121942955abe33523", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qRHPqa-GRVuxMCmcUcEBhA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "28ac92f812c246f8eb42f2517e57b8766772f29eb211a8294d09e8de3647daaa", + "text": "https://join.shanshu.ai/campushires", + "url": "https://join.shanshu.ai/campushires" + } + ], + "value": "https://join.shanshu.ai/campushires" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rB9R0o", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "嘉实基金2027届校园招聘全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b9699be960d28db1bb48e8ea9578cfabd28504e9e119f3500df80dbafcd7c9e1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DFhlZJmh4E3cpFwaZgdsIA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e3058c823d847b13e1c9fe50cd5d2164d7cbf94d454a405f83b19207a273ceb4", + "text": "www.jsfund.cn/jobs", + "url": "https://www.jsfund.cn/jobs" + } + ], + "value": "www.jsfund.cn/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roZtLt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "迪普科技2026届校园招聘暨2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/北京/成都等全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "870b51afda1aa10c634e19402691390df2ea0dd686dacd8fd09dbbe2b8d0946c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/H3b-ntTwmpJlhBg-8n9h-g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "23537f0015b34d6780e864be3a03c7648af21dec43bc3fcec9ca85e59f687272", + "text": "https://dptech.zhiye.com/intern/jobs", + "url": "https://dptech.zhiye.com/intern/jobs" + } + ], + "value": "https://dptech.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUpo4n", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中科本原2026届春季校园招聘及实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7c9399a1edaf60c416ee89e50d605f2516cb71c4b44503507d4c127c507d4569", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Zs1nL8QdEdXLhbwf1MrG1g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2432d28d8ab793c68e9f6ae5251b8cf04a995006653fc8998f2aed79f35bdc5f", + "text": "https://www.fdmtek.com/campus.html", + "url": "https://www.fdmtek.com/campus.html" + } + ], + "value": "https://www.fdmtek.com/campus.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmMmh4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "SAP STAR (VT) 项目2026春招启动|2027届er看过来!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773331200000", + "value": "2026-03-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月25日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c14a7e4d4f536136facd787072fa5c1ac48a5ede523830f8a7c2a0e74898f773", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/iaDHoy0c5gz4e6dQt7Uglg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "106ffcb21b65422bc476a8d8e7b9f1c526990ad9e69da894b534fe590ef4f41b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rY80s2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "工行总行本部2026年暑期实习生招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a879190f22e82fb431674337bc4038d49d8ab8d286b866e51d5510012793014e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QCTkQMdzbAJj3iCpLW0DQA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "4545d6dfb787f8b4b8b6fe929b44a4b3bd99a65249b29a2b345b13592d3f2be1", + "text": "https://job.icbc.com.cn/pc/index.html#/main/internship/home/struct", + "url": "https://job.icbc.com.cn/pc/index.html#/main/internship/home/struct" + } + ], + "value": "https://job.icbc.com.cn/pc/index.html#/main/internship/home/struct" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNfweq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Hi!Z“实”代计划丨中兴通讯实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "西安/南京/上海/深圳/长沙/武汉/成都/北京/天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "205fe99a9f04a0b3eef76f96fb5c6ed4c2298eeb0507d57470592ef0798142eb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dppwbPcLBbby7mgvqun2ig" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ef19c090e81267bcf602f6ad52f7cbeaab61058c575f956e40c583548066134e", + "text": "https://app.mokahr.com/m/recommendation-apply/zte/73988?sharePageId=4478200&recommendCode=NTA8GFL&codeType=1&hash=%23%2Frecommendation%2Fpage%2F4478200", + "url": "https://app.mokahr.com/m/recommendation-apply/zte/73988?sharePageId=4478200&recommendCode=NTA8GFL&codeType=1&hash=%23%2Frecommendation%2Fpage%2F4478200" + } + ], + "value": "https://app.mokahr.com/m/recommendation-apply/zte/73988?sharePageId=4478200&recommendCode=NTA8GFL&codeType=1&hash=%23%2Frecommendation%2Fpage%2F4478200" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbYYJc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026汇丰科技实习项目启动:码定成长,职得奔赴!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "95107a68ed2887bc8baf4e3d54c06f8f87619f57e071c1c3bfc8a47f97543178", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eUMND9qfqp-ifZzkL9UdTQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 403 + }, + "key": "5b96da0736234541c9fd4bfdf16d027d4be2681449818ab35af55bad269da508", + "text": "https://www.hsbc.com/careers/students-and-graduates/find-a-programme?programme-type=graduate-programme%7Cinternship-programme&page=1&take=20&location=mainland-china&area-of-interest=business-analysis-and-consulting%7Ccyber%7Cdata-analytics%7Cengineering", + "url": "https://www.hsbc.com/careers/students-and-graduates/find-a-programme?programme-type=graduate-programme%7Cinternship-programme&page=1&take=20&location=mainland-china&area-of-interest=business-analysis-and-consulting%7Ccyber%7Cdata-analytics%7Cengineering" + } + ], + "value": "https://www.hsbc.com/careers/students-and-graduates/find-a-programme?programme-type=graduate-programme%7Cinternship-programme&page=1&take=20&location=mainland-china&area-of-interest=business-analysis-and-consulting%7Ccyber%7Cdata-analytics%7Cengineering" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rH3yCU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【耀未来·趣同程】同程旅行春季校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/北京/上海/成都/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "056e5ff724295159743d5628bcdee9d905f6d703b91373e17389691441fae1ac", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/uP2FPttbP9jAZ__Kff5E8w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fc4ab3dc87b64efbad3843d4f68e503bc223d1ff47591a1390a5732bd50c449b", + "text": "https://mhr.ly.com/recruit/schoolPortal/#/postDelivery?srt=0.7926961158555046", + "url": "https://mhr.ly.com/recruit/schoolPortal/#/postDelivery?srt=0.7926961158555046" + } + ], + "value": "https://mhr.ly.com/recruit/schoolPortal/#/postDelivery?srt=0.7926961158555046" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTUJBB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "巨人网络2026春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9b605582589adeac12b529405a73a1a22891b91680b6430ccf33af96c637874d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/qIqLvNFl3WD30vFIz_zY1g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a15f1ccbbd46e5005ae36247333f2552a149c9eaa060778095453765efca77d", + "text": "https://app.mokahr.com/campus-recruitment/ztgame/92438#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0", + "url": "https://app.mokahr.com/campus-recruitment/ztgame/92438#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/ztgame/92438#/jobs?page=1&anchorName=jobsList&commitment%5B0%5D=%E5%AE%9E%E4%B9%A0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAAuV0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "金杜2026年春季校园招聘丨网申正式开启!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ozWEcR" + ], + "value": [ + "事务所" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳/重庆/海口/成都/南京/杭州/无锡/全国其他" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f218dc8afbbd48b096e900549750fd9e6c7b53be75888f665eea06ebeba8df4c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/9NgtQIL-8-Jiz400F8RAOA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d3e6aa3c04bda270d02097e38b59db5c8a61fae6f26c251c8ab8a3fefba1e9d1", + "text": "https://kwmcareer.zhiye.com/campus/jobs", + "url": "https://kwmcareer.zhiye.com/campus/jobs" + } + ], + "value": "https://kwmcareer.zhiye.com/campus/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raiAjZ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微观博易2026春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773244800000", + "value": "2026-03-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73f2a35e50b70d9c2457e99b83b4c5b4a52bf1e3e045bc950fe52c69d951d153", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fq6-H_BpJdaYBoM11Gr4fA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "7642b0d89c592736246d7be9c368b86e52ff1169c5de5afcaf91a361be5eadb1", + "text": "www.microtrading.com", + "url": "https://www.microtrading.com" + } + ], + "value": "www.microtrading.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0U2J9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国银行2026年春季招聘和实习生招聘同步启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8ce810992f2310903ad61ac4bd8d3c8e11e4293b96271cf39d0e36b276424d54", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HFtyFMMoYF8kPfVkCdb5uQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "399e88a65735f7dd3cbb616b5aa8575a7163afbdf26be8ae228052f39ae2ac32", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r67EcE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宁德新能源(ATL)2027实习生招聘&2026校招补录全面启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁德" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bd3d85373d8792dc05591d5db4b23e3d901b5e0ce0d1167799c7778c805ce353", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Ip1q9zDsi2YmhB5YqtUoBw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "23cc4cdaecc84791f372ae9b16b1b2a11f805413fd99440c47737fd0abf6a8f6", + "text": "https://zhaopin.atlbattery.com/", + "url": "https://zhaopin.atlbattery.com/" + } + ], + "value": "https://zhaopin.atlbattery.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVctl2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量派校招 | 量派投资2026年暑期实习正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "05f1e1a0eb29be072e4a1de1a17ed2760fbaabde22273db688a5bd2ec0c9f75e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/FoGPmo5rFKA_AM0JXaTDMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f0d3f0d11db1e18e50bb2d322f28be1d33a47f2874696c12549b9885e0adb92c", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruNmqW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万物云万物星实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oFN2i8" + ], + "value": [ + "物业服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/福州/厦门/武汉/泉州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "276441114f9dd5bc924a0e0cc8a142fc9f930f021ddf47115737d8fcb54bad42", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Unj3RP5np-PZF5fL02G4BA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "53198488dd4fc6063d6ec636cec90e391f37ec2047317187aa8e1eea2bc61bfd", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rupHYK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "先导智能2026届春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "无锡/珠海/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "01207a200262bb1273f3870ec494970703131d2b52fe8ca8e49ab3bcdcac88d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wSdzmazyT7G5Y_Kl5haFCA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "506cbfae0f3ed48a759bc86a5c2636c71c2dbbbc77ed006fea19408e25da08f4", + "text": "leadchina.zhiye.com", + "url": "https://leadchina.zhiye.com" + } + ], + "value": "leadchina.zhiye.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBsqsr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "望华(MCG)2026年暑期Ⅰ期及Ⅱ期实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "96e37753e8260342b925a3ee030abe19e73fe3f6e9e7c2be161b6f191acbf91a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ngLgiDxyYp5DllANVE3xxw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "084234eba7e258be837753c66d51ceba59a6bb42dcd4f5d063ebfc3ef9d5bda6", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riJ5Pv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "燧石投资 | 2026年校园招聘(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "95c8e25a6a24d0f24dbee53a535e928c0f0545e4c45111a9d765375b859ad381", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1lDVNDtef6kPD4c3jxFORg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9f796d5f99fa6e9ac8c9eae41473aaadd3965fc260be9e0f2af04fa55c75d8bb", + "text": "https://app.mokahr.com/apply/causis/163969?sourceToken=7dfc3ef7f5cbcd57be0377d4c56e6906#/job/341e3363-df0e-417a-ba4d-31afbc5eeb3b", + "url": "https://app.mokahr.com/apply/causis/163969?sourceToken=7dfc3ef7f5cbcd57be0377d4c56e6906#/job/341e3363-df0e-417a-ba4d-31afbc5eeb3b" + } + ], + "value": "https://app.mokahr.com/apply/causis/163969?sourceToken=7dfc3ef7f5cbcd57be0377d4c56e6906#/job/341e3363-df0e-417a-ba4d-31afbc5eeb3b" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rH2PJd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "文远知行WeRide春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773158400000", + "value": "2026-03-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳/武汉/新加坡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c442f7a145e592e4d2492a7e83451f9fb8249a43048988bde864cd6d10ab8a34", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/D3Izl7C5bK2BthuDK1sNQg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c63e16c62cc6a9686f4f0ca0e9d2bbf44adb28da22dda2ae41630106b82f92a2", + "text": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs", + "url": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs" + } + ], + "value": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQgLt9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "金证科技2026春季校招,正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773072000000", + "value": "2026-03-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/成都/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35ee425cf93de4ae63858d039c83844222542c4c0b38bb2e1a232e8a06c470a1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sVdtPsUEQ1QPFmttbxkrVA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "303ed82dd419214d6db585963121f3a3bad07a01012b335b136fd4332026dde6", + "text": "https://szkingdom.zhiye.com/campus/jobs?sessionid=", + "url": "https://szkingdom.zhiye.com/campus/jobs?sessionid=" + } + ], + "value": "https://szkingdom.zhiye.com/campus/jobs?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rio0S4", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "玄信资产2026年春季招聘正式启动(27届暑期实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773072000000", + "value": "2026-03-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f1324047443d18d8da649a855981b0d209464f6d539238d951031db131cde799", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/LS_zkTkaHfuSS0fcnwCBfA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "66993b6d6bddc44b102be29e20b43e76b58ba2f379a31ac4c5e68f96f7fff392", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYO8dh", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "蚂蚁集团2026春季校园招聘启动!(27届暑期实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773072000000", + "value": "2026-03-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/上海/北京/深圳/广州/重庆/成都/南京/香港/海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "735abc204d267a09fc0147dee90b0ab726080a63b7be18892cb34bca74ffce01", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/E3c4jcajA-816rBCx3Ea_w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "df1c605b925b285bf22868ccfdfb440178066417235086070e246b50e17d5df7", + "text": "https://hrrecommend.antgroup.com/job-list.html?source=campus_external_recommend&code=3iUgEmzMoaSBZtK0ZIqrIw%3D%3D", + "url": "https://hrrecommend.antgroup.com/job-list.html?source=campus_external_recommend&code=3iUgEmzMoaSBZtK0ZIqrIw%3D%3D" + } + ], + "value": "https://hrrecommend.antgroup.com/job-list.html?source=campus_external_recommend&code=3iUgEmzMoaSBZtK0ZIqrIw%3D%3D" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxJ5Pg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "马上投递!开立2026春招&实习生招募同步启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773072000000", + "value": "2026-03-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "opihhh" + ], + "value": [ + "生物制药" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/北京/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "adf80794fe00549f245dde7b43739a2e48d86d676e89ac456adbaf73d53f72ce", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wVo7BU3T0o9rplgFwJhblQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "974ef662feae92888602e4797cf1d7db6acbe290cb63f1dee6b00b9b8e6e5448", + "text": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039", + "url": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039" + } + ], + "value": "https://campus.sonoscape.com/campus-recruitment/sonoscape/94392/#/jobs?project=100120039" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmTwWy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "GE医疗2027届暑期实习生项目(EID)正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1773072000000", + "value": "2026-03-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "64a13f788ae7e8a872c9a4b7075fa6818e764ca2d778899937777bfb659f8ec9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Ngf8-qP1TVP8hTgdOOlbwA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8f14f41f4669501d1c8ce33ef026382ff6dc37659f124ce2c7be4f6b61922497", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg5NlL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Hi,库犸科技暑期实习生招聘为你开启了" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772985600000", + "value": "2026-03-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/成都/东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8caeca584921c0a46ecc100d3fc5842bfd2228bc03526b26df2aaad41b19c26a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/blcKizVH-xSQBqBczfejJQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d99dabc9a76e4862f192332862da74e76368d2ec2377d404639cbf1287de2fb7", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQPdez", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "其域创新2026届春季校园招聘来啦(含27届)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772985600000", + "value": "2026-03-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ee81a1403c492bde66d4c52b48cdbffa65460bc35c1c9407fbad59909c7dfff5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4ivqJwuO9b0OsqPEdY8evg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "aa176a79acc6cab60cfd86713cc2f5e32b543024edafb04c6197ade6a23f17ba", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWH7D1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "埃克森美孚2026实习生招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772985600000", + "value": "2026-03-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "惠州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9e8decd936439d02561befba3ccd9dc16462dabc1866c78d3f0eef916c9bd905", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eqPI10xnJ8ayQg81IfLDDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35cfb6c439d023b64bb4bfcdcf64ce9e536cc93e61e840aa38b8e5a754d7d82c", + "text": "https://jobs.exxonmobil.com/ExxonMobil/job/Hui-Zhou-HCC-Internship-GD/1363439100/", + "url": "https://jobs.exxonmobil.com/ExxonMobil/job/Hui-Zhou-HCC-Internship-GD/1363439100/" + } + ], + "value": "https://jobs.exxonmobil.com/ExxonMobil/job/Hui-Zhou-HCC-Internship-GD/1363439100/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rOHnWn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "嘉吉2027大宗农产品交易培训生招募正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772985600000", + "value": "2026-03-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2f9de7da266fc675243a6614bc0d1c6a8daf503c61ed6cdebd4ba3c48d936005", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UImPx3qMwgLQcRo9mt6zeA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8bcb288d10e074dee4b89b71328f205d27ff5250ed8f65eec8a624d82c364ccd", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRJNnu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "春招&实习生转正 | 唯品会2026届春招今天启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "og97f8" + ], + "value": [ + "电商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/上海/全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8df4c52863799e8a48aba22220a12ae729ffe5899e3e90188c4241d23a03f224", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/22Dw7ZDcj13EC7TmctKAdA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9b646b61fde6589fb105964dc239886c0ddc5aedf7566cb873e0bfdcf4742f31", + "text": "https://app-tc.mokahr.com/campus-recruitment/vipshophr/8015#/jobs?keyword=2027%E5%B1%8A&page=1&anchorName=jobsList", + "url": "https://app-tc.mokahr.com/campus-recruitment/vipshophr/8015#/jobs?keyword=2027%E5%B1%8A&page=1&anchorName=jobsList" + } + ], + "value": "https://app-tc.mokahr.com/campus-recruitment/vipshophr/8015#/jobs?keyword=2027%E5%B1%8A&page=1&anchorName=jobsList" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1tiIv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "紫龙游戏2026春季校园招聘正式启动!(含27&28届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "6月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cce2e6a3c349d00f69dcbb12f40434349e687de8bd115fa0593044825416f679", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/kh6mTTzIn7uy-RlmIZ67HA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "e588d1212ce07198c7a8f5dd4321a40f228385e600d34f9452358225f51de122", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCCEjL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华泰证券Fintech金融科技人才专场春季校园招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "acb6277c4ad9e0fb09e6cdf22b59059532ef7398433728543c7d918f934e5d82", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pSvNGt9OFVaeJm9Zf-cb2A?scene=1&click_id=448" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3ecee13633c35db0ccea5cb27b34442857f6f4358991fc75323278c85ef3826d", + "text": "https://wecruit.hotjob.cn/SU6013d14e5d83dc11e4a8ae4d/pb/index.html#/", + "url": "https://wecruit.hotjob.cn/SU6013d14e5d83dc11e4a8ae4d/pb/index.html#/" + } + ], + "value": "https://wecruit.hotjob.cn/SU6013d14e5d83dc11e4a8ae4d/pb/index.html#/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtUYiS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "诺力昂2026春季校园招聘全面启动(含暑期实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州/嘉兴/宁波/天津" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ef3aa184207a1fd70eeaa6696cdde3c1e4a896c864dfbc825fe098c0bcc9242c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/O8_3xMKQX0L4eKtM-pZN3w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dfd369be95e99ae6376deecec52e2292419be00eb5f335bd10265cd15bdbc60d", + "text": "https://campus.51job.com/nouryon/job3.html", + "url": "https://campus.51job.com/nouryon/job3.html" + } + ], + "value": "https://campus.51job.com/nouryon/job3.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKxPzv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "为旌2026届春季校园招聘&实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/南京/深圳/西安/\n北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ca1657156b7a2d402eecac9eaccfd8620cbc1b7573de36d69e1f1639d3c68805", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/vTSpLERlpKqoeYnU3T4Q9g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3477ab6c6008c234871e970b71c145f3c32c9ca653d545c833ecf67e78e46e91", + "text": "https://app.mokahr.com/campus-recruitment/visinextek/41636#/jobs?page=1&anchorName=jobsList&keyword=%E5%AE%9E%E4%B9%A0", + "url": "https://app.mokahr.com/campus-recruitment/visinextek/41636#/jobs?page=1&anchorName=jobsList&keyword=%E5%AE%9E%E4%B9%A0" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/visinextek/41636#/jobs?page=1&anchorName=jobsList&keyword=%E5%AE%9E%E4%B9%A0" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnLh6d", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "乾象投资 MetaSummer 2026 训练营火热招聘中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5f23a6dc2f8e1ace6c03ba978a853ab569f462430f2446769f448c87082efa7d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HWERjhJzdtVZUpTQaaF3bw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b50e8f14b119b0ea1907c75a6b0e3b988a82d40e6768b91836e70f8c77d625cd", + "text": "www.qianxiang.cn", + "url": "https://www.qianxiang.cn" + } + ], + "value": "www.qianxiang.cn" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rufIwu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "南方基金第11届证券研究大赛正式启动(可获得实习机会)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772812800000", + "value": "2026-03-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a5e7c5551e2950e4f9f2dffc93031d5348ed55f0d0caba022b6f96d2d3fc4134", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RyR7rtLVKapelDmSi5KxFw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2082b7f9cd40eecd7277e6afa0ca0580b8eea17fab4a9d3c182674a72679e390", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpZznU", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "神奇因你而生|上海迪士尼度假区2026年运营类实习生项目春季招聘启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b0e90de297894177eae4c7a796621761a6a6f626511ed3795c53c9bbdc209017", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g-b776jouGZDfaR1cGv8Aw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ea9ae0f7cdb37b48c877a909a6bfda6100e56c8cfa5623f10864585c7bc70428", + "text": "https://www.moseeker.com/positions/index/cid/3?candidateSource=1&custom=1808&moseeker_track_code=roO%3D%3D", + "url": "https://www.moseeker.com/positions/index/cid/3?candidateSource=1&custom=1808&moseeker_track_code=roO%3D%3D" + } + ], + "value": "https://www.moseeker.com/positions/index/cid/3?candidateSource=1&custom=1808&moseeker_track_code=roO%3D%3D" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKBSQ2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "用友2026年友智星实习生项目正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "52a3cc820c12b33c7a5027d5f3c12c137b6b543e8162500f9ece0f6ee87ec0b9", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SIDdV-s9sd4YBBNqT587Aw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c502407a665d699bdf492ca395bd3d32d79380d24a8ffb94406652b4a60f2c3c", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvJbww", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "春芽破土 芯动启程 | 芯导科技春招职等你来~(含27届)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳/北京/西安/成都/无锡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "79f47dd4aedd06d444edc174e0c5a5604618531f6120b072bf522af6528c7464", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TU0dQNmD-1tG2RopyacRzw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1872d46f378de2bd40d01165eae9a6b3903223f0e4a36aa4956ebee5e5061b52", + "text": "www.prisemi.com", + "url": "https://www.prisemi.com" + } + ], + "value": "www.prisemi.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXK2zC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026届极易科技“极之星”全球春招正式启动,这一站,直达你的理想Offer!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "og97f8" + ], + "value": [ + "电商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b33f08f59db427c441ec1a2e6fccf02c2f676a182ad7abb433de324240eb3aae", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/tB0AKbwHLSWJhmuF9nWYvg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c62d1d11540b41154d244e8ee426aa32d1f923061ec903139ab9027ce9d95844", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHvQyd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "平方和2026年暑期实习生招聘——全球启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ff7bbd97058a8b6866fa6d1e17b205f83972bf91177da56c2e20d91762921fa5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PvJ94SS7DTATKZgCkuc81Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5afe73066958aedbcb16b114517cda1ad78d331274e0de0efb7a748afcf02ec4", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5HsLx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国兵器第一研究院2026年春季校园招聘火热来袭(含27届)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772726400000", + "value": "2026-03-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03f3dcea6d5f76a2ec46976afecdb8d5edcfb3734e4eb0b3ced0061ec8558709", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3J_oIqQ4AUXQ9IqsQ2P4rw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "13593639f8ce62b7288374fee77503816a9266addff365ca8b133adebca58dba", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLVkto", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校招 | 微软2026暑期实习生-非研发岗" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月20日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/香港/台北" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "18f398dfea31505d3df8473d178d043c5a20ec92d50e9dc05228a3210ffb16c7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/YlYAOxX3TNukeoQ-FRUmMA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e9ad948947f3bc105ec730080340f69650b99bc90f658d654375c8be693e051", + "text": "https://careers.microsoft.com/v2/global/en/home.html", + "url": "https://careers.microsoft.com/v2/global/en/home.html" + } + ], + "value": "https://careers.microsoft.com/v2/global/en/home.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rdL7m2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【实习生招聘】紫讯科技2027届实习岗位招聘,开始啦!!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/福州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f2372ee36403296a0797204499b81d1d0debbcbd8c0c31c97e44e15ea2a511ae", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/SPftnLshOC6cV62HnvPidg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2ed780ad29a5be06b49f0f87c407fdaaaf314e079dcc6a370ecd28b47743e87b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryL7z5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北京大学出版社2026年实习生招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0e0f2d4f5bba33bfe93303268358d1a32179d9aa0510274a1b634f9fff3d5811", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/axlBNTyo7FstWV3c9ysvCQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0eae4aa7163c7db117c3f87d0db58b5004ccfe2d943752c10894ee2969b78e19", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPI68C", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "公司动态|磐松资产2026年暑期实习招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c2e66edd69ad4cd37b81355ce54147976e524f0264b827ba367bfe0d7f36a1d1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/oj6LaBnifLmgTNvPe2ahJw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2344c2f2d6e95a543a0be612812705a9494dec06a7b22ebc098dd108a1119286", + "text": "https://vb4gv9levr.jobs.feishu.cn/690551", + "url": "https://vb4gv9levr.jobs.feishu.cn/690551" + } + ], + "value": "https://vb4gv9levr.jobs.feishu.cn/690551" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r29poy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "以橙意,共橙就 | 中国平安2026春季校园招聘&实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "351b3c886874a82070c0227680d2a1337b960c346d5ced179260f57214981bdf", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ywhXB5cR7sSGegjnpKVuig" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "17a0a64ed12aa7825d5e673138f00431ded50602d0e582f0d0839839b454ed23", + "text": "https://campus.pingan.com", + "url": "https://campus.pingan.com" + } + ], + "value": "https://campus.pingan.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r6FZ69", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "博世实习生专项招聘 【智行学院】正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州/上海/无锡/常州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1cf005866b726a5efc11e670fc6c8bc19ff4507759ea513e47adade9888b07c1", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WWY3Nyxq_JMdt0DTg7IrQA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "bc34b6805c7da92e4fa09acd07ee2e40582f4a82c55b025c410a5f39aa968726", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJtZcn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "MPS芯源系统 2026实习生招聘开始啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/杭州/深圳/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "310976b2f2ce0564654eef588964c212d60b48329098c2d67b36f4788e45f358", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4KEnOGuiOHX_PJ4PuhOX6Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "d252a65ad0c82c775d514d76d0af01375e4ad3d743f696dc5aa32e2a67b2a74d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmqw3h", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "戴尔科技2026暑期实习生招募启动·调大音量!让未来听见你的声音~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772640000000", + "value": "2026-03-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门/北京/大连/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3cbd180d4b32b2aea46340820437e552073df02532804433365ae438aa163559", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/J_c6QuNgfYqPV91AtqY3vA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ac96632bbbbf2ec07f964d66b23ee7dd40a4d75d0624a2d82930c4d9fc622d23", + "text": "https://chinajobs.dell.com/students", + "url": "https://chinajobs.dell.com/students" + } + ], + "value": "https://chinajobs.dell.com/students" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJVnfM", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "寒武纪2026届春季校园招聘及实习生招聘正式启动(含27届)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/西安/深圳/合肥/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c54435830cae6aaa2b165b678949f1e9c2fbb13fa09c471facad558ad954cc8a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yhBj7eq97yU4MX_sdEdPpA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "78ab1684028b5d6d901ead274bcb0d622575ab75bbb2e1474006dc578e284cb8", + "text": "https://app.mokahr.com/m/campus-recruitment/cambricon/44201?recommendCode=DSVJUXGS&hash=%23%2Fjobs", + "url": "https://app.mokahr.com/m/campus-recruitment/cambricon/44201?recommendCode=DSVJUXGS&hash=%23%2Fjobs" + } + ], + "value": "https://app.mokahr.com/m/campus-recruitment/cambricon/44201?recommendCode=DSVJUXGS&hash=%23%2Fjobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rV78fK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "迈向移动物理AI时代 | 卓驭2026年「领航者实习生计划」全面启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "11615eef915a57ece513d27247ba49c0890cd5a7efae8d4af470d35ef37989bd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/E5gqWY8pCcjAD7c-DL9uqQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6dca7fb8f96b55e9c5743a0d5a7b8ae61768619c85a9d75b030b5981b88eaf35", + "text": "we.zyt.com", + "url": "https://we.zyt.com" + } + ], + "value": "we.zyt.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rg2Eyp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【加入我们】竹润投资2026实习招募计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0cb941a5033821d1b26a1ba9c59597fef796eb535cac8a1cafb2ce0e02eff01c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CJlC08Ecno6FlRE6DFFdjw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "62644f6b888091edd441c7d0b1bd64ad7822a932d72f4d2f0b7fb0022bd64fd5", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbHsL5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "壳牌中国2026年春季校园招聘启动|管培生+暑期实习生" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ab04c592c93818691bafc4e6f98a5961a4628200163dad6158058e4d9aa9d47f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/f0D7RBSBXxIgXa8mNtD_FQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "82ef51f3d8b4dc963e02229abe94330d6ccfcd3af44869d9f044fe13d0cbf10b", + "text": "https://shell.wd3.myworkdayjobs.com/zh-CN/shellcareers/job/Beijing/Shell-Assessed-Internship-Program-2026---China_R182099?locationCountry=6cb77610a8a543aea2d6bc10457e35d4", + "url": "https://shell.wd3.myworkdayjobs.com/zh-CN/shellcareers/job/Beijing/Shell-Assessed-Internship-Program-2026---China_R182099?locationCountry=6cb77610a8a543aea2d6bc10457e35d4" + } + ], + "value": "https://shell.wd3.myworkdayjobs.com/zh-CN/shellcareers/job/Beijing/Shell-Assessed-Internship-Program-2026---China_R182099?locationCountry=6cb77610a8a543aea2d6bc10457e35d4" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXKUaX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "友达光电2027 A+卓越工程师项目正式启动啦!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州昆山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "77d253cb69856112354a1bd1d9d21f8e1d41ed4403209128b4dfcfce0c8ca95d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/plCpRDqbzEzz5TklKL290A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "c63b4b977513bcf6fff4446f50991047c7939b547e68fd5385556a8138f0650b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5Sv6m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "洛书投资量化可留用实习火热招聘中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fe0f9dad428bee1219ebbdf289433d10fb8f10b8292f98a216ffaadf41c37c60", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/j3mUC31Lr733SdOdZ0VMBg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6957415f2779ba59825dbc7990cc04188275c90590066c8ea8991d9b5ea0b44e", + "text": "https://www.luoshu.com/join-us", + "url": "https://www.luoshu.com/join-us" + } + ], + "value": "https://www.luoshu.com/join-us" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1BakO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "易方达基金2026年暑期招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772553600000", + "value": "2026-03-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/深圳/香港/珠海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "34d7c77cde086fba917571d81bf3a1a10dd3d47aab97beecd065ba1a10df11c3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/IpiKhl11xwu6ZeGgiOY54g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8e8dff5a8d45d624d6257de1ab220c3bea72e822960fe1e524c01fb4473f76ad", + "text": "https://job.efunds.com.cn", + "url": "https://job.efunds.com.cn" + } + ], + "value": "https://job.efunds.com.cn" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrpOnD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商局集团2026香港青年暑期实习活动启动招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月9日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "761da1d9bd769f4873b245a26f743b5e23b417ff35f9d1bedbc63aa57b632a47", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/3anPTR1esD4ZjHo96GWOgg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "dca64bf62b8011bbbf62645ebefce8a8648bba728770e8cb04e2a427f3dd8d48", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "riNIgu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "连载START!2026欧莱雅(中国)暑期实习网申启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月10日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "720d48052fea074cbe68ff02157fe6d2d7efbc006f69e62fe82c1de99c78188c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/taPf6gaHBqIs1zU0G6bHlA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "857e21b5a7dce4023e439ee9d6c66700eaeeb0d11dd5781e96ddebe4235a05e4", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAW3rd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026 EA中国校园新锐招聘计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e21862f67f771a527bc648911444dd3a0ba85dc0bc90fda7a7d5b1e72a202e24", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/q_TgPXIsjbeAK1Ak4haCIQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "408fe19aaac28da6c0533c4930ffc53cfe14c2c15e50bddba136a16f672d44e1", + "text": "https://www.nowcoder.com/careers/eachina/170107?ncsr=kIPEhP", + "url": "https://www.nowcoder.com/careers/eachina/170107?ncsr=kIPEhP" + } + ], + "value": "https://www.nowcoder.com/careers/eachina/170107?ncsr=kIPEhP" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfA0Ys", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "航天科工二院2026校园招聘暨2027届暑期实践招募正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/西安/武汉/柳州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fa09c9891b47a94892c14d268203f9371db10f43c1f2c4f6b2738a88955f898e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WWY7o8FALJrY9kMOzTq1QA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "5a274769b045261a9ed1df16e3b56b39bfc0c71a9a5b3d78f0ee97447f27ae39", + "text": "公告中查看", + "url": "https://公告中查看" + } + ], + "value": "公告中查看" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDCs2v", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026思勰投资春季校园招聘启动(暑期实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "05e96b5445b9472a1edeeccfb9aee4aa5542ffee0b03f48043d89eb26e21121d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ISVfl1W2gVPNJ872iJSTug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "38088f30183b6905544294be2b28d4a723b6e61da916b1734441693ff00470d8", + "text": "公告中查看", + "url": "https://公告中查看" + } + ], + "value": "公告中查看" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPkilE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "奇瑞国际2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "芜湖" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "baf17a44161ca76af5f97627667c94ae13a4354e9d83c0bece972c4cfabb34e4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/BjeKKLmtkWOl5cN7QbhvKg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "4bd9da048b941d720c3861bf26a0ee3fb486c66fcdf46e8a8c54d67a84a48e56", + "text": "公告中查看", + "url": "https://公告中查看" + } + ], + "value": "公告中查看" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9za09", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "量化对冲基金DTL丨2026春季校园招聘(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/新加坡" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1a960b620f95a9f2e82a41bd3f5854182d16848f18086f6a356a8f91b7ae316e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nsV_yFmjakzrb1p9niOFww" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "507c15a0bddb9ceb493dcb0dbc6cceac652883e4827c38a28e6c85b48ead95ac", + "text": "www.dytechlab.com/careers", + "url": "https://www.dytechlab.com/careers" + } + ], + "value": "www.dytechlab.com/careers" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZZZir", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "豪威集团2026春季校园招聘正式启动(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772467200000", + "value": "2026-03-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/天津/长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "442f08997099b907719b8e5b21c0f02962d44037e3ebd0757efe938c1a154c6a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/F8uKqpm0clb_EAh9hUrElg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9230a1e20b9f3dda4762ef169a386b6098ebecdfcaf7e1b56b7c7b34bd232bb2", + "text": "http://ovt-omnivision.zhiye.com/Campus", + "url": "http://ovt-omnivision.zhiye.com/Campus" + } + ], + "value": "http://ovt-omnivision.zhiye.com/Campus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rv6itG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "青岚计划 | 岚图汽车2027届校招提前批实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772380800000", + "value": "2026-03-02" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "武汉/上海/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9a07302c43d3da73098eaca74dfbdae92176771ec2f28a592862d172be17db85", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/01lEdaIWLBW25PadFqeOFA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "189defb5abde3e6c8cc5353d2beff5c04732cd593eeb5b42e5ca7558439299af", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHzYe2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "涵德投资2026实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772380800000", + "value": "2026-03-02" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8241fbd2ed89ef1cb7ca9c506a9db50d985c5d1139f2035bef0563addf270e5d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PX2uJIIq55TJ1pq1hT6MOg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "44104fc3713deef210193fb10e992628243211bbb0fc98d1374f9ac69dfd046b", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFWH9i", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "春招“职”通车丨和天职国际在春天见面吧~(含实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772380800000", + "value": "2026-03-02" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o1fVRe" + ], + "value": [ + "商务服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/成都/海口等全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3aacbd76069ad6bf5ed110937347b09b7e028cb263ca448cac03534486306cbb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/HoFT2bUZGq1jD7ip8MJlyg?scene=1&click_id=17" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "fb1edb7a556970736342a25ed6042915ca57bc31d93e3c6dbb44d2452a4ca30e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrGrKY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "首序智能实习生招募|AI治理前沿赛道・不打杂・真成长" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772380800000", + "value": "2026-03-02" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bba88077670b6d7f82f8731bc84375cccc564bf79dd4cf2e31c4be00abd5e53a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WFvOcOYKWhuQsm4GpbGQAA?poc_token=HOaLpWmjVcXwrR5Sm1PHHXT67Z0M43FydpUiOhD5" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3e4282201c0e678607d2a1b1c7c12e27466fa95978ec242edf9907394ff947de", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTKSOO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "虹科招聘 | 2027届转正实习招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772294400000", + "value": "2026-03-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oRY45m" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/上海/苏州/\n北京/西安/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "314af3b617193bc81dcbe2ffc24057aec30c7900130fab247f6eea18fc5a1b4c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_i87wOPdUtWzP2EYBlfqCA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "49c2e544841627debbcee74aa739df478e0b1fbd4322f2d3a81dbd167f9323c2", + "text": "https://job.hkaco.com/", + "url": "https://job.hkaco.com/" + } + ], + "value": "https://job.hkaco.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8n3rN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "梅赛德斯奔驰" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772294400000", + "value": "2026-03-01" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "780dc9c0a42c5b7c6ee374677b5868355827285485246c85b5b4e76cd3a737a6", + "text": "点击查看", + "url": "https://career.mercedes-benz.com.cn/recruiting/company/13746/job-list?aj_source=career_website&aj_code=career_website_pc" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "tls_error", + "result": "unknown", + "status_code": null + }, + "key": "7be7df2d2824b05f1c95bdebcc3cd63a9d48da27d21f337f45d25055e826d85b", + "text": "https://career.mercedes-benz.com.cn/recruiting/company/13746/job-list?aj_source=career_website&aj_code=career_website_pc", + "url": "https://career.mercedes-benz.com.cn/recruiting/company/13746/job-list?aj_source=career_website&aj_code=career_website_pc" + } + ], + "value": "https://career.mercedes-benz.com.cn/recruiting/company/13746/job-list?aj_source=career_website&aj_code=career_website_pc" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMJTcw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中国三星暑期实习生" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772208000000", + "value": "2026-02-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/西安/天津/苏州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0f5ecfd654098bb0c2e20cc31705e966ea9bfb8093329d2d17b848451c563fa9", + "text": "点击查看", + "url": "https://dearsamsung.zhiye.com/#/samsung/pc/intern" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3cf53b5ff5e06c98d44d2af7d3cf53ce5a56c157df2cb555a0a25a6e67b6057e", + "text": "https://dearsamsung.zhiye.com/#/samsung/pc/intern", + "url": "https://dearsamsung.zhiye.com/#/samsung/pc/intern" + } + ], + "value": "https://dearsamsung.zhiye.com/#/samsung/pc/intern" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYD8yn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "平安银行暑期实习生" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772208000000", + "value": "2026-02-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳等全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7045e85f494b46b088d44267b84afb641a07595738b1e02c950b1ae9ef872801", + "text": "点击查看", + "url": "https://campus.pingan.com/internStudent" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c50d201662adde7e6f2070640932211c6041288eefa730b2ba0a82a2f1332e07", + "text": "https://campus.pingan.com/internStudent", + "url": "https://campus.pingan.com/internStudent" + } + ], + "value": "https://campus.pingan.com/internStudent" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxFeR2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "它石智航2026春季校园招聘&实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772208000000", + "value": "2026-02-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odKJz8" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2c7086366f8f1dc12f0fe293691d0c0995549e951012edb58cd483609d2f8c8c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ka7zITVATFpmjCdFPjObpg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e19b4e1e883bc29ce14fefae7caa16173417bbc9d1c792d321609c5564fe7cde", + "text": "https://tarsrobot.jobs.feishu.cn/021343", + "url": "https://tarsrobot.jobs.feishu.cn/021343" + } + ], + "value": "https://tarsrobot.jobs.feishu.cn/021343" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ruRlK9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "德勤2026校招|春季全职招聘 + 暑期实习 全面开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772121600000", + "value": "2026-02-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/天津/深圳/\n上海/广州/厦门/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9a1745fa1c08914aea1471e4b5fafa4ebd23712aa9a71c574b00f70aa4faa954", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/XKmNJHwx9lJwRpfnjtEYcw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "25b1c971df926338f18df6b9c6c59408b2cf7e17641ef0517f7e67281b3a7c8d", + "text": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=106602&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=106602&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=106602&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8Xs0o", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "美象信息2026届春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772121600000", + "value": "2026-02-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州/宁波" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "919681033bbd2e611e4489bd4fdc3b795851be1507973aff35f96402acb6a0dd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/g3Nv3GzrpX5_RTgBgnGfsw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "6d6331222afbf9f07e94cd6875c05e257d7cfdfb120cc9060c9ba7c2d695a791", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rTc7hA", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "保银私募|2026年暑期全球校园招聘计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772121600000", + "value": "2026-02-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b5783d47330f67bfd8117735b9e1123838924ded143533444bde2ae81ebb64e6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/x9GZkZdqxFRW4Rrochm-4w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "51b9626304ac3b59ef43e4a01218918e19883367794ebbc94e687498432e468d", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfHUiu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "第一曼哈顿 第一北京 2026校园招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772121600000", + "value": "2026-02-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DSJ4" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "42e1f32e6f6052374ef96347e5b91415830a09f0301501fa54730ab544662123", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/51ByJAWE9Bcf8NAY7xQX7A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8023bd12756590e8fbade92f3749e2f97ab5a3a96937fa3b0f1efbb1bd9da078", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9yiVH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "马年第一份心动实习已就位,汇丰环球助你一马当先" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/佛山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d197a33c7fbbcbb1b5d0a68814c58a6a98c9d669f1ee84aa72b381ff701a7398", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6Rq6TqcnnWDAvQeGecaP8g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "94e4e1a6dfe76647478298720c59516338587468517c7c3cd57905efe1a0c218", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGKBwR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "2026雅诗兰黛集团暑期实习生招募启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月3日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dbee0c5c6a41d7b9344fca88d3e15c9589c8a18b1ca7de023c114262da2334b8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/29oNWu1-9hdGKzM-ACeP5A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "636a4a616a43d507ccd32ee40582f99e440b2c39d866eaffd0de4f728ac6e441", + "text": "点击投递", + "url": "https://campus.51job.com/elccampus/" + } + ], + "value": "点击投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1FetK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海艺互娱2026届春季校园招聘正式启动!(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "5月24日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oCuHAK" + ], + "value": [ + "人工智能" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a8435250633b105e4357970ef8e56d52d4889af127a506e64e6cea278c70e5fe", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/TdS5JZEXU36rSM0CB5NasQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5153f95d6ddd42a14aad8d81ac70f2150c05cd0d0a2229d588805b44ac24f62f", + "text": "成都海艺互娱科技有限公司 - 校园招聘", + "url": "https://app.mokahr.com/campus-recruitment/haiyi" + } + ], + "value": "成都海艺互娱科技有限公司 - 校园招聘" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ro5j93", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“翼”往职前|启动!GE航空航天暑期实习生项目申请" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "79a40646bc2dcd1a6226ff538dfec9e4cb7aef1ce074cecc73ae5cdea650dbff", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/b1h3xuoAw-i0H9_23eKWpQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0ebcea81439ec3414f05147dec2c5efc2a23bf9e5f9eb3cea070b529688f6410", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFbStg", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "德州仪器2026届春季校招及暑期实习招聘全面开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳/成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ae0b3b51ad3684bb2a09d7bedcc526f6e86aff0af9da98b2c5e74dcfcab99be2", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/lhrTlDROZEf9zmGj0Ue7oA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "85df360c4abd1986267d40cbd3790d7521a391666ba3c011918e50fbeb593c8f", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYZrnu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "天演招聘 | 2027校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ec2d80d90171c996830e4ea744d1cd4c7cd95796a264ec7c91186c7219198509", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/pF1vKcQcQr2pOyk3xa19sA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "892160ab53d482fe6a718cf41e30513647f114d726469a188df25af841b2fe41", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHoy7m", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园招聘 | 舞肌科技2026-2027校园招聘火热进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o5s1C2" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9eb8b8e7ffce2a2111ae73d62c91f5bd3f7a595a822d89c3faff7ec4ac52011f", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/yrh3SIMsDtxOHnDMqvGuTA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4302f20ca40c9f1b8ccd269c69ad7757181236091262e8057b63e39167cf5003", + "text": "https://wuji.tech", + "url": "https://wuji.tech" + } + ], + "value": "https://wuji.tech" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raTDVy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "开春启新篇,Apple 校园春招如约而至。" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1772035200000", + "value": "2026-02-26" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/成都/深圳/其他" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a77272aac6529f4a0a66da4764aecd266fdb12e6cf07fefb127722cff251b9ab", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sKuj3qKIPTZ5lgO0_fvA4Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fc6dd386eb60d8241801bd3a9d089894cf12b406c1f2d863f815ed5f4ec9194f", + "text": "https://jobs.apple.com/zh-cn/search?location=china-CHNC&team=internships-STDNT-INTRN&board_id=JB136&cid=social_corporate_china_wechat_china_spring_ur_intern&board_id=JB089", + "url": "https://jobs.apple.com/zh-cn/search?location=china-CHNC&team=internships-STDNT-INTRN&board_id=JB136&cid=social_corporate_china_wechat_china_spring_ur_intern&board_id=JB089" + } + ], + "value": "https://jobs.apple.com/zh-cn/search?location=china-CHNC&team=internships-STDNT-INTRN&board_id=JB136&cid=social_corporate_china_wechat_china_spring_ur_intern&board_id=JB089" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNKgfN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "景嘉微2026年春季招聘焕新启航(含27届实习)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771948800000", + "value": "2026-02-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "湖南长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7ac7bfcc8050660cea4540332f2ae5fac202d2836c31436389d24f4ab657d518", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wblNUwDpJvwv86cQ8J0sPQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c3421e7c0d6c8ea16522b9054cceeb1d8904af6bfa7f860b09717b3bf4650d7f", + "text": "https://jingjiamicro1.zhiye.com/", + "url": "https://jingjiamicro1.zhiye.com/" + } + ], + "value": "https://jingjiamicro1.zhiye.com/" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLud6o", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习生招聘 | 华为智能汽车解决方案BU AI实习生全球招聘进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771948800000", + "value": "2026-02-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/深圳/苏州/成都/杭州/东莞等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd9e60aa600b56d90df284ee3db2b6e235cf73a562d3e259b15c4d341a8997c8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/J9lOD1CpjKdvcsUIr-XJJA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "cc7005d290d40e33f741b2294680d06d8b45f6f826e1680d2692c48425434b4d", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHKAgp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习生招聘 | 华为数据存储产品线2026挑战课题实习项目启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771948800000", + "value": "2026-02-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/成都/杭州/东莞" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "deac95989890404367a3b70ae80f4687000055a0bc9a7c097dc8e4040f645a23", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/NSwJsSVBUaiA7czN-5Tcqg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "be267cbe195414e969fc55bfe0b120b1b7c2c1542fbfb0ed019eb53ea931d667", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkU1kW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "华为AI实习生 | 计算产品线招聘进行中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771948800000", + "value": "2026-02-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c50eb81ed31477f4c13d8746c7d27c423e4518ac6437eb56c6bc87578be10264", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/4Oxp_cdj9EFfWcDd9gStiA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "af734be60b871b6878367f3d3753d3edeb492ea0a076518d8951f8301d48f93e", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rE1tBt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "光亿旺达校招 | 2026年校园招聘正式启动(针对27届暑期)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771948800000", + "value": "2026-02-25" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d1f857b2cace1fad231afe7d4e2083cb639c68d4ef2229aaabda74878a48f999", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/v7YGhieSrokDwRaEnlA7Iw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "19ac779ab7f4be6dfbae280ee926b559c815077f7f5deb93ddfeb2621ab85b22", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKFX9l", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "L.E.K.上海2026暑期实习招聘已启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771862400000", + "value": "2026-02-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f542bd65e75fe5c4ccd75670c621fcfca71f552a5fbb8dc561f098665c6556eb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/I1WYbvjVhq1M01GDubgmuw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1b86c825a6de327c0bd79e38e15cac7c1f7db6b3c21f963ccc11e8fb64a8f3f0", + "text": "https://lek.tal.net/vx/appcentre-3/brand-2/spa-1/candidate/so/pm/1/pl/8/opp/3926-2026-Summer-Intern-Shanghai/en-GB?sessionid=", + "url": "https://lek.tal.net/vx/appcentre-3/brand-2/spa-1/candidate/so/pm/1/pl/8/opp/3926-2026-Summer-Intern-Shanghai/en-GB?sessionid=" + } + ], + "value": "https://lek.tal.net/vx/appcentre-3/brand-2/spa-1/candidate/so/pm/1/pl/8/opp/3926-2026-Summer-Intern-Shanghai/en-GB?sessionid=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rb5BW9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "「无涯投资」2026招聘(实习生有留用机会)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771862400000", + "value": "2026-02-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "abc748a4668a31792b073099813e64c3a57e193c1c0a7c8302d79977abda1131", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/1wuB5paT-t7v-Q6O4gPpLg?click_id=65&scene=1" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "3d25bcd9f38127c6e8fcaae1fd7da290685b6a6d90814fc9de6f970f2744ab85", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5V6Eu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【招贤纳士】源合资本招聘持续进行中,欢迎您的加入~" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771862400000", + "value": "2026-02-24" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4Ebi4" + ], + "value": [ + "金融服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5fc2b05fba03f6966e1d8989248341e419391c3edc6640ff7cbe3cb177098714", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/U_Yoy7LSBNgr-_79IkFiLA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2255d0f1af434e265de73d2da671af90f9ad6a4671f5badacbe87518224b1854", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxe64y", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "真实市场 AI掘金|爱凡哲量化2026届春季招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771776000000", + "value": "2026-02-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d542ed43d84c8028f81e349bf0659bd611ab9f5ee5df12ccd2025f94fd9652cd", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/8a7G8Ep5NiE8bqMJO__4YQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8c00180082e0f6c16069edcc7753a681f3b208340ddff0fc4f9bc541b9d5e760", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCbrvq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "世纪前沿2026年春季/暑期实习生招聘进行中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771776000000", + "value": "2026-02-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7c1a853a3022fb6a2b37957e9f21f08369b17124f3e7a2f605d780f8b7de3cc8", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/QtzdKbyYp6YN8aC_ekCZ0Q" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "02160feb063323764b2c34419c4e73d8d263191b291f6d70ad2f1793aaa9432c", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMQjgR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "北京脑所Okubo实验室招聘算法实习生" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771776000000", + "value": "2026-02-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7b4d3486a246b3a15776202487bdfa07b35a704aa3f3541f995926eedca3e447", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/_q0Pr5-nm_bg_uXooYYamg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "35e19f4469e85ddffa65611ed2f9285ecfe06f8bec9831e60cdc7431d929182b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlrEFK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "TenX AI 2026春季校园招聘启动(实习同步开启)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771776000000", + "value": "2026-02-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳 " + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "460b402ab3aa82b48f34eef20098665f6afee6646e18279dadbd21a39445a748", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/PU7uP6XJPPsQHAjYsBGlfg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "724af3bba243662f1d1b1acca471d9c206ef53c27ecc5c39d5b14593cc7de222", + "text": "https://ten-x-ai.feishu.cn/share/base/form/shrcnNeaeddy7014a9j2Soj08xK", + "url": "https://ten-x-ai.feishu.cn/share/base/form/shrcnNeaeddy7014a9j2Soj08xK" + } + ], + "value": "https://ten-x-ai.feishu.cn/share/base/form/shrcnNeaeddy7014a9j2Soj08xK" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1Giqu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "乐鑫科技 2027 届领跑者计划启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1771776000000", + "value": "2026-02-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87b1280e51e4b92c23b9a4777171d3c535fdfdae2c5aa71638c530ee3a00cc37", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/R8PmvkeUwsZ2EbgePK-6Tg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 403 + }, + "key": "e845059375d8f0f4c1aa607c674a7cc8ee5b5726f518a2a871583b4d6bd6352b", + "text": "www.espressi.com", + "url": "https://www.espressi.com" + } + ], + "value": "www.espressi.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3wdp0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "渣打银行实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770998400000", + "value": "2026-02-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b96b6576ae9771ffbc1dc53ad0ff9d39a8290e3ef674b679d3ffe600e1b9472f", + "text": "点击查看", + "url": "https://www.sc.com/en/global-careers/early-careers/?utm_source=wechat&utm_medium=general&utm_campaign=early%20careers" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6a20500b95a3b4f7c5e58187cdc646da83d87ce6ebf73b0d025c1522b458396b", + "text": "https://www.sc.com/en/global-careers/early-careers/?utm_source=wechat&utm_medium=general&utm_campaign=early%20careers", + "url": "https://www.sc.com/en/global-careers/early-careers/?utm_source=wechat&utm_medium=general&utm_campaign=early%20careers" + } + ], + "value": "https://www.sc.com/en/global-careers/early-careers/?utm_source=wechat&utm_medium=general&utm_campaign=early%20careers" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcCXew", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "麦格理Macquarie事业发展 | 热门职位开放中(北京和香港)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770998400000", + "value": "2026-02-14" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e2c8fe1811c2272ca68dd52c142932615e0af40822056270f1cd5413eba3da01", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/7yFt9IyIU15tLvTXyRnZDA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "feefc50f4bddbb6242481b21ba469da851158e9c7da52314837a9ed76d3fb95f", + "text": "https://recruitment.macquarie.com/en_US/careers/JobDetail?jobId=20541", + "url": "https://recruitment.macquarie.com/en_US/careers/JobDetail?jobId=20541" + } + ], + "value": "https://recruitment.macquarie.com/en_US/careers/JobDetail?jobId=20541" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXByQr", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "即刻加入,触摸梦想!强生安视优在线寻找“亮眼”实习生!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770912000000", + "value": "2026-02-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "54b7035b88334656bcd20e8702929aad4186b388cf31d649a8325813e698c0b4", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eqJuUO3I2PFtu718-3Dedw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6707f31e65e874473ace221c93e8372398f7028edaf1dbc5f93af8378458b739", + "text": "https://chinacampus.jnj.com.cn/position/detail/6981752ca40898725b0b2d57?type=INTERNSHIPRECRUITMENT", + "url": "https://chinacampus.jnj.com.cn/position/detail/6981752ca40898725b0b2d57?type=INTERNSHIPRECRUITMENT" + } + ], + "value": "https://chinacampus.jnj.com.cn/position/detail/6981752ca40898725b0b2d57?type=INTERNSHIPRECRUITMENT" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsnANx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中金财富2026年暑期实习正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770912000000", + "value": "2026-02-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9j6bk" + ], + "value": [ + "券商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳/上海/全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e6e603966b568f8d85fb049c82f6c7b8ecb9215912fb80261a4969e6fce9125a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/t21Yp8zcIVIKHeTUVCp-qA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "79ba962042956ed3f5d7715441524df8520c041b3c2835e38e128a7eb752fefa", + "text": "https://ciccwm.zhiye.com/custom/zjcf", + "url": "https://ciccwm.zhiye.com/custom/zjcf" + } + ], + "value": "https://ciccwm.zhiye.com/custom/zjcf" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r11EGy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "格见半导体 2027届实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770912000000", + "value": "2026-02-13" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/深圳/成都/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2034adde274c7493e2465f98cd2aac7b35e6848982c7bdaeaab478f7925dc6de", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/UDWmAUyGFuOISPlRAt34Ng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "57ed5d3689142dcecb08719075f986781089c17bc1d9bf31e90e3a9bac81452b", + "text": "https://gejian-semi.zhiye.com", + "url": "https://gejian-semi.zhiye.com" + } + ], + "value": "https://gejian-semi.zhiye.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnrOwh", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中金公司2026年暑期实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770825600000", + "value": "2026-02-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "3月15日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9j6bk" + ], + "value": [ + "券商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳/上海/全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d34fa4e204b39ffe66282990aafd4705ce313106c3d88b9f15c1d22711b165cb", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CgRUZR3qm8P7d52Sutx-6g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "510454a643fc1b5b3a35967d221e026f592634286dfb724e20f8cd0159072092", + "text": "http://cicc.zhiye.com", + "url": "http://cicc.zhiye.com" + } + ], + "value": "http://cicc.zhiye.com" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rYATvu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 2026年荣耀AI&软件业务部实习生正在热招" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770825600000", + "value": "2026-02-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/深圳/上海/南京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3977f043f3c9ea1725a794b87604f9b268be0807d863507ea294828060e9a21b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/wsEsVK3_YHcuGbgfPc4xiQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b4f7f1da6a700b2a388ee95824b46ea6dc559c1f797600b34d74682907a97fff", + "text": "https://career.honor.com/SU61b9b9992f9d24431f5050a5/pb/interns.html", + "url": "https://career.honor.com/SU61b9b9992f9d24431f5050a5/pb/interns.html" + } + ], + "value": "https://career.honor.com/SU61b9b9992f9d24431f5050a5/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrKgB2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "校园招聘 | 兴证全球基金2026年春季校园招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770825600000", + "value": "2026-02-12" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oKp8FY" + ], + "value": [ + "公募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c67d74dbe03c65c02d3416b5cd72762b41ebeab29bdaeec54a6480ec3f8a8a56", + "text": "点击查看", + "url": "https://sc.hotjob.cn/wt/AIFMC/web/index/interns" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c733419dd8b8ea664ab6aeaad75857001b4dbd52efd6d619eb694e60178956b9", + "text": "https://sc.hotjob.cn/wt/AIFMC/web/index/interns", + "url": "https://sc.hotjob.cn/wt/AIFMC/web/index/interns" + } + ], + "value": "https://sc.hotjob.cn/wt/AIFMC/web/index/interns" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "roq75d", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小米顶尖实习生计划开放全年招募!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770739200000", + "value": "2026-02-11" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oA4Pfp" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/武汉/深圳/南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9bf4bef8b8a8971f0d8bfddb092ccffc57eacf8992ff524ebff33c1b8cb374ef", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/dpIk25Ns11e3xycqCGU4aA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "a45c54ae4b3c15f111f8a2623baf919cd2187e989d01219c822e98759ec680fd", + "text": "https://xiaomi.jobs.f.mioffice.cn/s/2wqpaJwyXjQ", + "url": "https://xiaomi.jobs.f.mioffice.cn/s/2wqpaJwyXjQ" + } + ], + "value": "https://xiaomi.jobs.f.mioffice.cn/s/2wqpaJwyXjQ" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJDyvx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "英特尔中国实习生招聘,创造下一次「芯」动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770652800000", + "value": "2026-02-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都/上海/北京/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c2db7a3bce7658e18cba1393f49ea8d1bf90e44c2c79f8a5154fa4331abc89ac", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Erq-CFgwGI2mWJ3cTEQQng" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "fe781dbd356cbf11f6f787acebb67af9a964d538424c0d446d4a285767df3b58", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rn1fEx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "德迅投资招聘 | 寻找未来同行者" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770652800000", + "value": "2026-02-10" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oe0qTx" + ], + "value": [ + "投资机构" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "70b004308b60c2efc18d27904d3a723ee14edfaf35e7b2af1743124095cd1a8b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/axX8z1WaUMvAbFBdCRnHkg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "2353fe531784c5b810d3534d9ff5689f2cdafe4c0bbb9b95ae8d64b561e7e7bc", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNvZTx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "腾讯混元实习生热招中!面向所有年级的本硕博同学" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770566400000", + "value": "2026-02-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳/北京/上海/新加坡/美国" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "026c558f5517b5eea5331bfa2d202e0c488cd3d4b1c17fca91dc13d0c2c28565", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Fgfx55K6Zx8O-vpBhGc6AA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "03898ad1e33fd4d7950b7d2f179477c0daf9cec18dcebb6b4588006755704380", + "text": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I", + "url": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I" + } + ], + "value": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAkZCi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习招聘 | 中汽科技(深圳) 中汽芯实习生招聘进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770566400000", + "value": "2026-02-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "50c87029202be576f4f5df1986ef5e6140257d270d8d48e56b5cf321a0d8c816", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/ahQOioQho58dDTr5j7Cgrw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "196ffa491cfe5a033cbe363584bdd3d2a3ddfbdd59a2483ed96e02fc99ac8cf9", + "text": "电子邮箱:husiqi@catarc.tech;联系电话:(0755)3638161813422674408", + "url": "https://电子邮箱:husiqi@catarc.tech;联系电话:(0755)3638161813422674408" + } + ], + "value": "电子邮箱:husiqi@catarc.tech;联系电话:(0755)3638161813422674408" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rH8mRw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | CCG实习生招聘(多部门多岗位)" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770566400000", + "value": "2026-02-09" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "644e303dd48403eebf82cf5e559597c5a1c1e8da7271c5dc8620d38fc2f1a444", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/EMJhvM_xawPS0PQxipMBmw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "69a5ad2b066cd8ecbeb99f00471c9f8c7f37d673a43bc31a082b06f3e08d6a51", + "text": "邮件名请注明“姓名+学校+应聘媒体部实习生”\r发送至:\r\rhr@ccg.org.cn,\r\rmedia@ccg.org.cn\r\r\r邮件正文需写清:\r\r参加面试时间(线上或线下均可)以及\r面试通过后可入职时间、可实习周期", + "url": "https://邮件名请注明“姓名+学校+应聘媒体部实习生”\r发送至:\r\rhr@ccg.org.cn,\r\rmedia@ccg.org.cn\r\r\r邮件正文需写清:\r\r参加面试时间(线上或线下均可)以及\r面试通过后可入职时间、可实习周期" + } + ], + "value": "邮件名请注明“姓名+学校+应聘媒体部实习生”\r发送至:\r\rhr@ccg.org.cn,\r\rmedia@ccg.org.cn\r\r\r邮件正文需写清:\r\r参加面试时间(线上或线下均可)以及\r面试通过后可入职时间、可实习周期" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhme5O", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "JOIN US | Python爬虫与AI大模型算法实习生" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770480000000", + "value": "2026-02-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oa1xN8" + ], + "value": [ + "国企/央企/事单" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "93f2ff93c8f251c6f3105adc250ebe2d21d38cb55bb94a854c545ddea29ef6b3", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/bdxdUoZmPkTAtHuTrdWRxQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "9bfb7eaa8115321b8889026248f4e89c7ec62e97ab79b3a07a78f91f00a94c9b", + "text": "公告中邮箱投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中邮箱投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkwvgw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招聘 | SAP2026实习招聘岗位" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770480000000", + "value": "2026-02-08" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海/北京/西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4307519018f53331ba7f1ed244e72ba88552aab46a7c38c41a52a7c6a2bb40ea", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DNfkXB4gHa48OySuCHiPVA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "8601012a2959c35dac17fbcc8705f8c179f333de7556891044018a0570c90ad5", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUYcKT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "面向泛理工科!2026“宝洁供应链训练营”正式开启!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770393600000", + "value": "2026-02-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "2月23日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州/江苏太仓/线上" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c6cf4e0aaae86edcabab14586a66353ab1767259827a371938cd04ba9bff8c91", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/VPU40u63wi80hMYuoV5HIw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dd84e22f0a3cb766814f409a61f349d51a95d7d41e306238e8be7d11bab85108", + "text": "https://app.mokahr.com/campus-recruitment/pg/95051?sessionid=#/job/d1de3f07-4309-4206-b9ab-0e14d3e3c7fa?from=qrcode", + "url": "https://app.mokahr.com/campus-recruitment/pg/95051?sessionid=#/job/d1de3f07-4309-4206-b9ab-0e14d3e3c7fa?from=qrcode" + } + ], + "value": "https://app.mokahr.com/campus-recruitment/pg/95051?sessionid=#/job/d1de3f07-4309-4206-b9ab-0e14d3e3c7fa?from=qrcode" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rbdGeJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "合绎投资 | 2026校园招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770393600000", + "value": "2026-02-07" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0d2146f7316caeb9ffbbaf24608015108244877b373071cc3c3929ba950c0f94", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/WdPDMl6zw3-NADqrmyNZCA" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "b579310e8436de18c2de0a8898227c32ce0719eff5d1f8f269051f8ba1a69e96", + "text": "公告中扫码投递", + "url": "https://公告中扫码投递" + } + ], + "value": "公告中扫码投递" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlxPsc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "瑞银 | 金融科技学徒计划重磅招募" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770307200000", + "value": "2026-02-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e6c8854bc7233702ecf2e7a822ec1c29141f0043c9fe15c48b88bf4f492dea23", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/sREnY7HDYDFSwvUU2MrR2w" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6a180cf23f2624c00078cada9e11b8a19f2c8a5dd3a65f45224a14a73941616", + "text": "https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?PageType=JobDetails&partnerid=25008&siteid=5012&Areq=333821BR#jobDetails=340931_5012", + "url": "https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?PageType=JobDetails&partnerid=25008&siteid=5012&Areq=333821BR#jobDetails=340931_5012" + } + ], + "value": "https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?PageType=JobDetails&partnerid=25008&siteid=5012&Areq=333821BR#jobDetails=340931_5012" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMHLNK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万事达卡2026暑期实习招聘启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770307200000", + "value": "2026-02-06" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4Ebi4" + ], + "value": [ + "金融服务" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b76ebcd087c79939745160c869f53788fe4afa3426137a965159579e12202d4d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/eLdCqpzoRE3JXZKpNrm5ZQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d6418c31b51a627e637cb0dc4fd8fa1524b635226d225daca0fa5bc483d29b0b", + "text": "https://careers.mastercard.com/us/en/student-opportunities", + "url": "https://careers.mastercard.com/us/en/student-opportunities" + } + ], + "value": "https://careers.mastercard.com/us/en/student-opportunities" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkbuJx", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "提前上岸!小马智行Pony.ai实习生招聘正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770220800000", + "value": "2026-02-05" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oUK9oO" + ], + "value": [ + "AI/算法/大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "707e20733c5a752d013a387139edf55e7f99470d95a41a4284bb8545636d7883", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/6euQGnYy8WVV4om6frR1XQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8d7f050d50a2ebf1ff5be8a640ec5a1281ec54a614ab3393c74e08a107274213", + "text": "https://ponyai.jobs.feishu.cn/ponycampus", + "url": "https://ponyai.jobs.feishu.cn/ponycampus" + } + ], + "value": "https://ponyai.jobs.feishu.cn/ponycampus" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhjKj2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "明汯投资2026实习生招聘持续热招中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770134400000", + "value": "2026-02-04" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "47e7f98410d56be3cd7f55e8c1af1cddf1adc8dfe28675a1c472a89539114c03", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/F9fawZagiIQ9DY7O6_prRg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73f52d1ca7abe4853c7e89e1c772b9e0733a3585ffd727f508ff0ec0596a5102", + "text": "https://join.mhfunds.com/index", + "url": "https://join.mhfunds.com/index" + } + ], + "value": "https://join.mhfunds.com/index" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5P4Yk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "半鞅私募基金2026暑期实习计划正式启动" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770048000000", + "value": "2026-02-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "4月30日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f1fe158e3eb33ba66e1664734d7c44703a49ee6433dcb7627421237b06bd3fc7", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/fDm18DgRfd9uERFEW3iVkg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0beab3c7d3c3f7020a0e57afd8fbc050e24c5ed562d60ec2524ed3652566938e", + "text": "https://banyangcap.jobs.feishu.cn/index/position/7597063772227291435/detail?search=", + "url": "https://banyangcap.jobs.feishu.cn/index/position/7597063772227291435/detail?search=" + } + ], + "value": "https://banyangcap.jobs.feishu.cn/index/position/7597063772227291435/detail?search=" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpcK3B", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "安贤投资2026暑期实习项目正式启动|量化岗位招聘进行中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1770048000000", + "value": "2026-02-03" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/厦门/纽约" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87d6825b0e13b29fc7acb8cbce040feebde95a0edac9d2943bd43f3c52a8e890", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/-DsOmvNMi7M0xdvH9-cfDg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b72f0c40c64b651b20b1d1b77ec8c1212d308b9be4b71fd0eb15f011b49c491b", + "text": "https://job-boards.greenhouse.io/axq", + "url": "https://job-boards.greenhouse.io/axq" + } + ], + "value": "https://job-boards.greenhouse.io/axq" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVptuk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“勤”你加入 | 德勤中国实习生岗位热招" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769702400000", + "value": "2026-01-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ojSbta" + ], + "value": [ + "外企/会计事务所" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a09adf74877df3f00689e6361504c3bd4aebda790c83dd3331f02b422164568c", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/Y4rCBbpLWAolrkX0NgaB_g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b8411d1e5e8c182b9534c1238d667307ccb7c01a699a795f11e98a3403a72a09", + "text": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=105601&showProjectBanner=true", + "url": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=105601&showProjectBanner=true" + } + ], + "value": "https://wecruit.hotjob.cn/SU648133e50dcad45af15e3cb1/mc/position/intern?projectCode=105601&showProjectBanner=true" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIXx02", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "淘天集团T-Star计划 | 全年开放日常实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769702400000", + "value": "2026-01-30" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4fdf4c957c237b731898c5595aed15a2a313c94ef5ee3766226308c753ecaa32", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/cSTG3ky2rT6e-r9w2-5KVg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4c9764fe2bd4031b3c27729361c4b62a82062537c97fee5bef40c892ac655f89", + "text": "https://talent.taotian.com/star/home", + "url": "https://talent.taotian.com/star/home" + } + ], + "value": "https://talent.taotian.com/star/home" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rU9Ted", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "广发银行苏州分行2026年实习生招募计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769616000000", + "value": "2026-01-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "12月31日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3579262b78888a64274efd38fc675c4d95ea28419f193e946fe3947477d4862b", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/nHP58iQ8XhhXpIg82tgllw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "052d65d21ea13ae32ed4645f924bcdf0e1c9bd1c3df27e81879277e9f44758fc", + "text": "见公告", + "url": "https://见公告" + } + ], + "value": "见公告" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXbi2K", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "NVIDIA 实习生招聘 | 叮!寒假任务列表更新" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769616000000", + "value": "2026-01-29" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o4kV3b" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4500f1ff51634c00985f26a7d0a0dad63ba90348d5ef83aace8af5effe713672", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/CDt7LROMmNuBtK1KyMls4A" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ee81ab341e6facf2d4c03b563ee658c189cf9c909a803cbd9fa3ca48d08ebc16", + "text": "NV校招黑板报(实习生&应届生岗位持续更新)", + "url": "https://docs.qq.com/sheet/DT3NCWGtsS29KUmlE?tab=cgk2qn" + } + ], + "value": "NV校招黑板报(实习生&应届生岗位持续更新)" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rIRydp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鸣石基金2026春季校园招聘正式开启" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769529600000", + "value": "2026-01-28" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "1ebb0ffe6ec43dbfa09fd26a73b53bcef0950ec79ad9638a4f57785317b5643a", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/RQKrYFm3IggDGF7l5P7Icw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "067279684a05e4d176e3305da8ca99e47ee5a4d9fd9ba218022b83d3b4517f9b", + "text": "https://mingshiim.zhiye.com/intern/jobs", + "url": "https://mingshiim.zhiye.com/intern/jobs" + } + ], + "value": "https://mingshiim.zhiye.com/intern/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnpmzp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "腾讯2026实习生招聘技术提前批正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769443200000", + "value": "2026-01-27" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "2月13日" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c69a7832a5d4a8ea18925e9a82701b25ddb3dcd11a957e421b4d127829ea5c41", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/S99ZVuH0guoluCjcZsZP3g" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5ba1d5ff314f62236378a9a96379684488a3e4173440aa63adfe049ef90340c8", + "text": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I", + "url": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I" + } + ], + "value": "https://join.qq.com/resume.html?k=ykYyrMbYqDCzIjBpBmaAG5-koXnwW3cpRelOqQ2wf0I" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1qa04", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "实习 | 千衍基金招聘计划" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769097600000", + "value": "2026-01-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oeKMMM" + ], + "value": [ + "私募" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "bd4d3a9f91f39a972933e5c7bb00009afe5f29eabdb3450c937dcd07b7260e6e", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2bIzMJaH99Q2QvkuCMGuyw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "f663dd7958c0f1dcfb242778d0242fdec662c32425d37613a557bff0c4eea24f", + "text": "请将简历发送至:hr@qianyanhf.com邮件主题:姓名-应聘职位-投递渠道", + "url": "https://请将简历发送至:hr@qianyanhf.com邮件主题:姓名-应聘职位-投递渠道" + } + ], + "value": "请将简历发送至:hr@qianyanhf.com邮件主题:姓名-应聘职位-投递渠道" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnSK4I", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "文远知行2027届校招实习生招聘正式启动!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769097600000", + "value": "2026-01-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oUK9oO" + ], + "value": [ + "AI/算法/大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/广州/武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c7438550ad64432d92a339fcd222014ee34480ca60e7f620f76ccbd32f7a14b5", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/5gyrHt6MYs5fTJ_1jQsnQw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "9971c396201b9fe0d6e2a36e8e88338d44cafd8a95849defd3533e2d80725585", + "text": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs", + "url": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs" + } + ], + "value": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkLR7s", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "提前锁定offer!字节跳动安全与风控2027/2028届实习生招募中" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769097600000", + "value": "2026-01-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳/杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "0b7a5f2ef141020c9292af3d4d4c6ecc52a8c3b917790f4686d06300a96679e6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/2bedWfWaqAbRKnsSptGmug" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "519a0664e5fc5d681bec639641962fba5c242bf41c67b20e6f918b54323ed4af", + "text": "见公告", + "url": "https://见公告" + } + ], + "value": "见公告" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDntAj", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "“梦工场”招商银行长沙分行2026寒假实习生招聘" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769097600000", + "value": "2026-01-23" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "已截止" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "长沙" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "13aa7e278ecabc4caa7efdfe67bbaf4769dd5ef8ff04ca6284cbcd27b4c22474", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/W1bJYsXdA0zPDvqx-DG7Mg" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "request_error", + "result": "unknown", + "status_code": null + }, + "key": "0ea1b8d1ac0506f1be99cd08f44c423eb7bf26323571a64853cbc838c1d6d826", + "text": "见公告", + "url": "https://见公告" + } + ], + "value": "见公告" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r3CHeC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "【启明星计划】华丽登场|讯飞研究院实习生招募专项" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769011200000", + "value": "2026-01-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oUK9oO" + ], + "value": [ + "AI/算法/大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/西安/合肥/武汉/长春" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4b9c962835962054fd6840f1937d4c9e02f2efe8942b7a528f2d2a5f14c706d6", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/DyEMB9YCBBvUbNAcKtnOfw" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c018feaf45de20679b9185c471991a4df4337068d785b55fd446ba91a2374976", + "text": "https://wecruit.hotjob.cn/SU60769cec0dcad4510451cb0e/pb/interns.html", + "url": "https://wecruit.hotjob.cn/SU60769cec0dcad4510451cb0e/pb/interns.html" + } + ], + "value": "https://wecruit.hotjob.cn/SU60769cec0dcad4510451cb0e/pb/interns.html" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKqwQ8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商证券研究发展中心社会招聘与实习生招聘进行中!" + }, + { + "field_id": "fCXsG9", + "links": [], + "raw_value": "1769011200000", + "value": "2026-01-22" + }, + { + "field_id": "fDRXwX", + "links": [], + "value": "未明确尽快投" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o9j6bk" + ], + "value": [ + "券商" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "o94Tm4" + ], + "value": [ + "27届校招/实习" + ] + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京/上海/深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "87d6e1b9b524086d87739e09ed826754129c198f6f36fb2f85ec60159d41159d", + "text": "点击查看", + "url": "https://mp.weixin.qq.com/s/OMOnYThqgLHejXJm9OmlrQ" + } + ], + "value": "点击查看" + }, + { + "field_id": "falHt8", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73a86e87711dbcfb11829861bbcae8277a991a9015c6f139112b847cdd255044", + "text": "https://wecruit.hotjob.cn/SU629dbc260dcad452299bc0fa/mc/position/intern?t=1769169245914&orgCode=0%2F20", + "url": "https://wecruit.hotjob.cn/SU629dbc260dcad452299bc0fa/mc/position/intern?t=1769169245914&orgCode=0%2F20" + } + ], + "value": "https://wecruit.hotjob.cn/SU629dbc260dcad452299bc0fa/mc/position/intern?t=1769169245914&orgCode=0%2F20" + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWSdZy", + "removed_at": null, + "status": "active" + } + ], + "schema": [ + { + "field_id": "fv08FQ", + "name": "公告标题", + "options": [], + "order": 0, + "type": "text", + "type_code": 1 + }, + { + "field_id": "fCXsG9", + "name": "更新日期", + "options": [], + "order": 1, + "type": "date", + "type_code": 4 + }, + { + "field_id": "fDRXwX", + "name": "截止日期", + "options": [], + "order": 2, + "type": "text", + "type_code": 1 + }, + { + "field_id": "f3OeZe", + "name": "所在行业", + "options": [ + { + "id": "oy7vN3", + "name": "国际贸易" + }, + { + "id": "o5n6qG", + "name": "服装/快消" + }, + { + "id": "oY0Pfm", + "name": "光模块" + }, + { + "id": "ouOdiU", + "name": "医药" + }, + { + "id": "oaByde", + "name": "机器视觉" + }, + { + "id": "oV8yOp", + "name": "电器/家电" + }, + { + "id": "orfh9Y", + "name": "民营航天" + }, + { + "id": "oi8gXm", + "name": "农林畜牧" + }, + { + "id": "oWzXXi", + "name": "电源" + }, + { + "id": "o7SvYi", + "name": "光纤" + }, + { + "id": "o52aEH", + "name": "存储芯片" + }, + { + "id": "o2hZPA", + "name": "石油石化" + }, + { + "id": "o7IlCV", + "name": "农林" + }, + { + "id": "oZP5rn", + "name": "家装" + }, + { + "id": "onWknA", + "name": "生猪销售" + }, + { + "id": "oWxw3I", + "name": "材料" + }, + { + "id": "ofLWXl", + "name": "节能环保" + }, + { + "id": "o9rLbb", + "name": "交通运输" + }, + { + "id": "o04fQQ", + "name": "能源/电气" + }, + { + "id": "oKPbel", + "name": "多元综合" + }, + { + "id": "okzN0z", + "name": "储能" + }, + { + "id": "o4FF2z", + "name": "电缆/氢能源" + }, + { + "id": "oqgIpL", + "name": "检测机构" + }, + { + "id": "oQOcnB", + "name": "机械装备" + }, + { + "id": "oQbSuH", + "name": "汽车行业" + }, + { + "id": "oa6Z1q", + "name": "教育" + }, + { + "id": "oyNwUr", + "name": "酒店" + }, + { + "id": "ovYJGt", + "name": "生物医药" + }, + { + "id": "oXER6i", + "name": "中外合资" + }, + { + "id": "o3l8n8", + "name": "智能教培" + }, + { + "id": "oxBeFs", + "name": "跨境电商" + }, + { + "id": "oT9AsE", + "name": "盲盒手办" + }, + { + "id": "ozWEcR", + "name": "事务所" + }, + { + "id": "oFN2i8", + "name": "物业服务" + }, + { + "id": "opihhh", + "name": "生物制药" + }, + { + "id": "o1fVRe", + "name": "商务服务" + }, + { + "id": "oRY45m", + "name": "科技" + }, + { + "id": "odKJz8", + "name": "机器人/AI" + }, + { + "id": "o6DSJ4", + "name": "金融" + }, + { + "id": "o5s1C2", + "name": "智能制造" + }, + { + "id": "oKp8FY", + "name": "公募" + }, + { + "id": "oA4Pfp", + "name": "通信" + }, + { + "id": "oe0qTx", + "name": "投资机构" + }, + { + "id": "oa1xN8", + "name": "国企/央企/事单" + }, + { + "id": "opH3Qa", + "name": "三维视觉" + }, + { + "id": "o4Ebi4", + "name": "金融服务" + }, + { + "id": "o9j6bk", + "name": "券商" + }, + { + "id": "o4kV3b", + "name": "电子/半导体" + }, + { + "id": "ojSbta", + "name": "外企/会计事务所" + }, + { + "id": "oeKMMM", + "name": "私募" + }, + { + "id": "oUK9oO", + "name": "AI/算法/大模型" + }, + { + "id": "o0KoHc", + "name": "母婴科技产品" + }, + { + "id": "oxCURB", + "name": "物联网" + }, + { + "id": "oKNKEw", + "name": "LED显示器" + }, + { + "id": "oUnRld", + "name": "电子雾化" + }, + { + "id": "o2ZaDh", + "name": "智能座舱" + }, + { + "id": "og97f8", + "name": "电商" + }, + { + "id": "obWuUZ", + "name": "光通信" + }, + { + "id": "o1Bu50", + "name": "显示屏" + }, + { + "id": "on6s4x", + "name": "工业机器视觉成像部件" + }, + { + "id": "oyr0YZ", + "name": "零售快消" + }, + { + "id": "oJXvqe", + "name": "全景相机" + }, + { + "id": "okJ5IZ", + "name": "AI智能体" + }, + { + "id": "ouiY7I", + "name": "AI企业应用" + }, + { + "id": "oLVqmD", + "name": "房地产" + }, + { + "id": "ou3MNx", + "name": "生物" + }, + { + "id": "ovY0xi", + "name": "新能源" + }, + { + "id": "oQrCla", + "name": "实训" + }, + { + "id": "oJMGfM", + "name": "互联网金融" + }, + { + "id": "oJ8Jc2", + "name": "金融-一级" + }, + { + "id": "oo60sm", + "name": "人力咨询服务" + }, + { + "id": "oxdWLl", + "name": "手机" + }, + { + "id": "op6r79", + "name": "物流" + }, + { + "id": "odCx1H", + "name": "教培" + }, + { + "id": "oAmle2", + "name": "快消" + }, + { + "id": "o4rX6j", + "name": "会计师事务所" + }, + { + "id": "oLI3a7", + "name": "医药医疗" + }, + { + "id": "oqnzsD", + "name": "制造业" + }, + { + "id": "oHo84Y", + "name": "游戏" + }, + { + "id": "oyzKNG", + "name": "车企&自动驾驶" + }, + { + "id": "odsQeD", + "name": "互联网" + }, + { + "id": "ojQRRs", + "name": "科研/出版社" + }, + { + "id": "oRg4wl", + "name": "国企" + }, + { + "id": "oCuHAK", + "name": "人工智能" + }, + { + "id": "oqxffT", + "name": "自动驾驶" + }, + { + "id": "oK5jZo", + "name": "芯片IC" + }, + { + "id": "o5xFKC", + "name": "软开&算法" + }, + { + "id": "oOm6FB", + "name": "硬件" + }, + { + "id": "oH20U5", + "name": "外企" + }, + { + "id": "ozP59b", + "name": "通讯" + }, + { + "id": "op7bJ1", + "name": "AI" + }, + { + "id": "olyWI5", + "name": "玩具" + }, + { + "id": "oEDFUX", + "name": "管培生" + }, + { + "id": "ouqxPv", + "name": "银行" + }, + { + "id": "odnRpT", + "name": "量化" + }, + { + "id": "oDm0pJ", + "name": "中小厂" + }, + { + "id": "obmKwR", + "name": "Java开发" + }, + { + "id": "ouMGt3", + "name": "ICT服务及应用" + }, + { + "id": "oQciCK", + "name": "硬件" + }, + { + "id": "oz52pz", + "name": "日化" + }, + { + "id": "oaOhGz", + "name": "大规模数据处理" + }, + { + "id": "o6DVpE", + "name": "网络安全" + }, + { + "id": "oSbuR8", + "name": "激光雷达" + }, + { + "id": "oTZ8us", + "name": "自动化" + }, + { + "id": "ocXWUX", + "name": "汽车智能驾驶" + }, + { + "id": "o8LMB8", + "name": "赛车模拟器" + }, + { + "id": "oxmhI7", + "name": "软件" + }, + { + "id": "oSUUxu", + "name": "机器人" + }, + { + "id": "ogSZ9f", + "name": "3D打印" + }, + { + "id": "oiENQd", + "name": "半导体" + }, + { + "id": "oAJ8pF", + "name": "阿里系" + } + ], + "order": 3, + "type": "multi_select", + "type_code": 9 + }, + { + "field_id": "fcthkP", + "name": "招聘类型", + "options": [ + { + "id": "oDi2VD", + "name": "夏令营" + }, + { + "id": "oUWeSl", + "name": "开放日" + }, + { + "id": "oAw1Y7", + "name": "27届秋招" + }, + { + "id": "ozJFiO", + "name": "27届提前批" + }, + { + "id": "o94Tm4", + "name": "27届校招/实习" + } + ], + "order": 4, + "type": "multi_select", + "type_code": 9 + }, + { + "field_id": "fEIMlb", + "name": "工作地点", + "options": [], + "order": 5, + "type": "text", + "type_code": 1 + }, + { + "field_id": "ffq904", + "name": "公告链接", + "options": [], + "order": 6, + "type": "url", + "type_code": 8 + }, + { + "field_id": "falHt8", + "name": "投递官网链接", + "options": [], + "order": 7, + "type": "url", + "type_code": 8 + } + ], + "snapshot": { + "active_count": 824, + "fetched_count": 824, + "historical_count": 824, + "link_hash": "da54b7fb78681f19583f6e3336fc2f7e58c5ebcc664dab3944d63cac23698722", + "max_columns": 8, + "page_ranges": [ + [ + 0, + 60 + ], + [ + 61, + 823 + ] + ], + "pagination_complete": true, + "record_id_hash": "2ac3d86080485171f3b1eb690078bb09cb11882fc9d72ea2b5969bf8cfaf6d3e", + "scan_hash": "7c4c8f77d130a33d6b43d7a4cf0faadce06c182a2fd54acb1b17d451eaceab8d", + "source_total": 824, + "synced_at": "2026-08-09T14:43:43Z" + }, + "source": { + "document_id": "DUXJLSnZoTVFhVUVs", + "revision": 11296, + "sheet_id": "t3UcsQ", + "source_url": "https://docs.qq.com/smartsheet/DUXJLSnZoTVFhVUVs?tab=t3UcsQ", + "view_id": "vKWCWH", + "view_name": "每日更新" + } +} diff --git a/data/jobs/early-recruitment.json b/data/jobs/early-recruitment.json new file mode 100644 index 0000000..349d1f4 --- /dev/null +++ b/data/jobs/early-recruitment.json @@ -0,0 +1,10968 @@ +{ + "records": [ + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "字节-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发、产品、运营、设计、职能/支持、销售、市场、游戏策划" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、广州、成都、杭州等多地可选" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "52eac982522b8843182dc20d194749e39d11e30cccc32d4962f8ba1e62b98482", + "text": "点击内推", + "url": "https://job.toutiao.com/s/AADA-zMzUdI" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "6AMFCWU" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "两个志愿机会" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQZxCH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "哔哩哔哩-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "★技术类(算法、开发、测试……)\n★产品运营类(产品经理、用户运营、数据分析……)\n★市场营销类(品牌推广、商务拓展……)\n★内容类(编剧、剪辑、内容策划……)\n★设计类(UI、UX、视觉设计……)\n★职能类(HR、财务、法务……)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京、深圳、海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "849673d82fc21bbe118312a3b48834cbd01ad98f09d9e19d215d5f670124df66", + "text": "点击内推", + "url": "https://jobs.bilibili.com/campus/positions?token=f672d580-2e82-4ec5-aa6f-b69839c9245b&page=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "D74S43" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rk31SD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "京东-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法、软开、产品、运营、市场、职能、设计、金融" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、成都、香港、广州等诸多城市" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c74f200dafbeb0c46c93d6c40d97f8820145177291420a4cbdd6151abcbb0349", + "text": "点击内推", + "url": "https://campus.jd.com/api/wx/position/index#/?emplErp=XIWC0Q" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XIWC0Q" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "🚀 极简应聘流程\n1⃣ 随时网申(重点蹲7-9月!)\n2⃣ 简历过筛→24h内发测评\n3⃣ 无笔试!(特殊岗位除外)\n三轮面试通过后等Offer!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r18KFv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Shopee研发中心-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发岗、算法岗、产品岗、职能岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6a5ca725a7a82c477a2d1dec302062ac76b01cd53fdf2705489da53f3dd776e2", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/shopee/2962?recommendCode=DSbqCArb#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSbqCArb" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "网申/内推 ➔ 笔试 ➔ 2~3轮专业面试 ➔ HR沟通 ➔ Offer" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEMGR0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "美团-北斗计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型算法、智能体系统、搜索/推荐算法、自动驾驶、无人机等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、成都、香港、广州等诸多城市" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2cc88b3d111eee1c4736038da525cee102339d75ea6c4ce54486c5913806f421", + "text": "点击内推", + "url": "https://zhaopin.meituan.com/m/campus?zp-from=hiring-campus-bole-elephant&staffSsoId=24343714" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "676PQ98" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rInYUO", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "快手-快Star提前批" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型、音视频、AI infra、AI工程与应用、推荐等9大核心研究方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、杭州、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "dda9057a2e0d83e73df88dc3f719d8e6cd8e618e8a4574f5a23e53e48683bf55", + "text": "点击内推", + "url": "https://campus.kuaishou.cn/recruit/campus/e/h5/#/campus/jobs?code=campusAcNwYjK" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "campusAcNwYjK" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "双重保险:没选上快Star,也有机会直接拿快手校招正式Offer" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rup1H5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拼多多-提前批" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类,运营类,职能类,产品类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c38c3e87ee1b9cf872205078e3e0660a2ac4db2efd5d42be8df3d1b083ab1de2", + "text": "点击内推", + "url": "https://careers.pddglobalhr.com/campus/grad?t=ciJDRkZQep" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ciJDRkZQep" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rr5UDp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "涵盖5大方向,共74个细分职位:\n1. 算法类:大模型算法、多模态算法、智能体、自动驾驶算法、AI异构计算等。\n2. 产品类:AI大模型产品经理、产品运营等。\n3. 政企类:政策研究、政府事务、战略合作与业务发展等。\n4. 销售类:政企行业解决方案和服务等。\n5. 综合类:人力资源、财务、法务、战略分析、品牌市场等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、杭州、成都、郑州、广州、大连、苏州、厦门、重庆、香港、新加坡等全国及海外多城" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4a7bbdfe5372ef94ff3f3752feb42ca260c3a7515e884ed338d51410627547c9", + "text": "点击内推", + "url": "https://dwz.cn/kb1pF3t7" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "IZH1K9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "本项目为秋招正式批,每周四笔试" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rctZuE", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "网易互娱游戏-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "策划 / 技术 / 美术 / 测试 / 用户体验 / 市场 / 运营 / PM 等多类岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州、杭州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d1f7e27ef5da672e4ee44bb8131c7f7faa2e2dac822b5796794e84964174c946", + "text": "点击内推", + "url": "https://campus.game.163.com/?referralCode=KUzqkE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "KUzqkE" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "!!今年扩招,可以尝试,与网易雷火互相独立,互不影响" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDOUdk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "网易雷火-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术研发类:客户端/服务端开发、引擎/图形渲染、AI算法、测试开发、数据、安全、工具开发" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、上海、广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c71f00de6fe9885035604ac11486f1afee3d02aa5fc14362b41b7a960d676350", + "text": "点击内推", + "url": "https://xiaozhao.leihuo.netease.com/neitui/#/?introduceId=C2p5HB4JKaqMp6OL" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "无需内推码,内推链接即可" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "网易游戏/网易雷火/网易互联网互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnI5Qo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "米哈游-秋招" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "1. 程序&技术💻:引擎、客户端、服务端、大模型AI算法、高性能计算、测试开发、平台运维\n2. 美术&表现🎨:原画、3D建模、动画、特效、UI交互、技术美术\n3. 产品策划📝:系统、战斗、数值、关卡、技术策划\n4. 运营📊:用户运营、社区运营、活动运营、数据分析运营\n5. 市场商务🤝:品牌、媒介、商业化、IP商务合作\n6. 国际化🌍:海外本地化、全球市场运营\n7. 质量管理✅:游戏测试、本地化测试、质量管控\n8. 综合职能📋:项目管理、人力、财务等职能岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "19c341d760e4c1fcd05b280e316f979aa729072cde036708cb49ebd54745e2f5", + "text": "点击内推", + "url": "https://jobs.mihoyo.com/m/?recommendationCode=JYBZ&isRecommendation=true#/campus/position" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "JYBZ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVTwgJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "以下为阿里系秋招汇总" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [], + "value": [] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZs7Ov", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "蚂蚁集团(暑期实习笔试共用)" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术、产品、运营、数据、风险管理等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、上海、北京、成都、深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "777855680ea0b788248567815c64bceada5e1c23beb4be4e69ad1320a7103d5e", + "text": "点击内推", + "url": "https://hrrecommend.antgroup.com/job-list.html?source=campus_external_recommend&code=eE1AdyFS8%2FC0P%2Fp4aKwUZO8vesy6TN47ERWdZora39M%3D" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "无需内推码,内推链接即可" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVnLmB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "淘宝闪购" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI应用研发工程师、AI应用算法工程师、AI体验设计师、AI数据工程师、大模型数据研发工程师、移动端逆向工程师、安全技术工程师、数据科学家、AI Agent产品经理、产品经理" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、杭州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35617dd327dff8fc461bac2229ae147a52ab98f5be6d173f64ab48a23d93f5c5", + "text": "点击内推", + "url": "https://campus-talent.alibaba.com/campus/position?campusShareCode=uRTuHDh6JCdbArwYmrzrcMcM_FF46ISdc9AaPCoi0%2FecbyiSXjmam3VarRyOYpGy&batchId=100000760001" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "2T4L7MMG" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推淘宝闪购岗位。和淘天互相独立,流程不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzvf7Z", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "舜宇光学" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o1T8xw" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "结构设计、光学设计、电子设计、软件开发、图像算法处理、工艺技术、销售、市场开发、质量管理、人力资源、财经等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "宁波、中山、杭州、上海等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3627ab827056036a03d9ff0a7c0dd85e6bb888cbf4ff61f7ad5b74527ec5798e", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/sunnyoptical/45602?recommendCode=DSFXNDEh#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSFXNDEh" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "舜宇集团是全球领先的综合光学产品制造商" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ99ek", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "深信服" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o6DVpE" + ], + "value": [ + "网络安全" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI算法:LLM、多模态、CV、AI Infra、智能体开发(X-STAR顶尖人才专项)\n底层研发:C/C++、Go、内核、虚拟化、分布式存储、云平台开发\n安全攻防:逆向、漏洞挖掘、威胁检测、安全GPT研发、红蓝对抗\n售前技术:云&安全解决方案、技术交付\n技术服务:全国技术支持、远程运维工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳为主,北京、长沙、成都、南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6dea847740291f85c941263db279ec99d660866d28dc9bfee9f757564de4a93", + "text": "点击内推", + "url": "https://app.mokahr.com/m/recommendation-apply/sangfor/5369?sharePageId=4680339&recommendCode=NTA40wZ&codeType=1#/recommendation/page/4680339" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTA40wZ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFPUKy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拓竹科技Bambu Lab" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ogSZ9f" + ], + "value": [ + "3D打印" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "机械、硬件、系统测试、力学、光学、算法、嵌入式、软件、材料、数据、信息安全、项目管理、NPI、包装、供应链、PMC、产品、市场、销售运营、零售、物流、技术支持、客户关系、职能支持" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、武汉、杭州、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "bf8fb8b975a2beef6fbf5d8c272a33d276944a38a5f0b34f337be16559da6700", + "text": "点击内推", + "url": "https://bambulab.jobs.feishu.cn/s/caESw3r_4hI" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XT76S61" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "超一线互联网大厂的工资薪酬,年终奖在硬件科技公司中遥遥领先" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "reXRDf", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "去哪儿旅行" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类、产品类、运营类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-09T14:43:43Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "9793f0df18be8a56d19ca2aa7f20675cc1374d1b0a3825529342fdc61d984aea", + "text": "点击内推", + "url": "https://hf7l9aiqzx.jobs.feishu.cn/s/I41W8hdrqjE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "C7THQ3F" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-09T14:43:43Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rp968Q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "迅雷" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、产品类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "10c7e866d3f474ec794956b65ea47caeab251cca58e7e3eb0226dbda4afd86bb", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/xunlei/26600?recommendCode=DS9ZBRG7#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS9ZBRG7" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "岗位上新" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2uwZT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "德州仪器" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "IC、芯片测试、销售等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州、北京、杭州、上海、深圳、苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "871e084d835fdf76836ace49ac4b19972caef4fbd974d4ab05c8e215ea63ab24", + "text": "点击内推", + "url": "https://app.mokahr.com/m/recommendation-apply/ti/143987?sharePageId=4681682&recommendCode=NTA7AMk&codeType=1#/recommendation/page/4681682" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTA7AMk" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rAyay2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "中科-寒武纪" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "芯片类、软件类、职能与支持类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、合肥、西安、南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "64d02cf782bf128977fa618c4685a8073e5f227a2693d19d8e5a95d2d9eadcf3", + "text": "点击内推", + "url": "https://app.mokahr.com/m/recommendation-apply/cambricon/46261?sharePageId=4687277&recommendCode=NTArSC0&codeType=1#/recommendation/page/4687277" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTArSC0" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2jKMI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Shopee AI Star Program计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型、深度学习、计算机视觉、NLP、强化学习或高并发架构等技术领域有极深造诣的技术前沿探索者" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e1fc210693f1b8a169b3f7b5fb7eefbefee593155cbaf4bcde7dec44b6475774", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/shopee/170008?recommendCode=DSS3z8sg#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSS3z8sg" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "AI专项计划" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMYyMi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "恒玄科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "芯片类(数字IC前/中/后端设计、验证,模拟、射频IC设计,硬件设计、FPGA设计、封装研发、测试开发等);\n软件类(AI、嵌入式、wifi/蓝牙、音频、通信等方向);\n算法类(wifi/蓝牙/GNSS、通信算法、声学/音频、ISP、机器学习等方向);" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、成都、杭州、武汉、西安、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "b679885539418808462fd07a757e8a4ebd8769c6bd35805221625134af5354fd", + "text": "点击内推", + "url": "https://neitui.italent.cn/bestechnic/sharejobs?rt=2&shareId=e0e22def-eed3-4830-8487-0a2578af0d4f&language=zh_CN" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "IVSP0A" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rPLw8g", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "叠纸游戏" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "美术/技术/策划/运营...多个高能岗位任你选" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "dd6c36cefb42c4a97bfdaf4fff94e944ebbcb025ae3d234eecc21863c07e8baa", + "text": "点击内推", + "url": "https://career.papegames.com/s/n-LrUKpFzzY" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "52AFQ98" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ra9hGc", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "联想" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "op7bJ1", + "o1T8xw" + ], + "value": [ + "AI", + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "产品与项目、技术、市场与销售、职能、供应链、设计等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、天津、深圳、成都、大连、合肥、昆山、上海、无锡、武汉、南京、厦门、广州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2f043c3404436f71455f50a23ff15776c7e921cb3f14aa4033672019ce9bb8fb", + "text": "点击内推", + "url": "https://talent.lenovo.com.cn/home" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "2027XZLMWYL" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "在编辑简历的最下方☞的“其他”模块的“从哪儿获知招聘信息”选择“联想员工推荐”然后填写IT Code码并输入:2027XZLMWYL" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBwzr0", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "字节" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发、产品、运营、设计、职能/支持、销售、市场、游戏策划" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、广州、成都、杭州等多地可选" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "49d13f7440b77875cabef07592e1c16fea2c16e79902d10ea3530fa86c18e3d3", + "text": "点击内推", + "url": "https://job.toutiao.com/s/AADA-zMzUdI" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "6AMFCWU" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "两个志愿机会" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rK75vs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "睿创微纳" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类、产品类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "烟台、苏州、无锡、合肥等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d3ff08b871563edc000745245acbabd2ec01dfc30f74273513f16d34d3def886", + "text": "点击内推", + "url": "https://raytrontek1.zhiye.com/campus/jobs?shareId=074474e3-02b3-4706-b408-3e9110d783f7&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ESVMB9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raeAG2", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "哔哩哔哩" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "★技术类(算法、开发、测试……)\n★产品运营类(产品经理、用户运营、数据分析……)\n★市场营销类(品牌推广、商务拓展……)\n★内容类(编剧、剪辑、内容策划……)\n★设计类(UI、UX、视觉设计……)\n★职能类(HR、财务、法务……)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京、深圳、海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a6317859c00100609ac090f663aade5027fdf2f2905a6219ccb59eb38ab411bb", + "text": "点击内推", + "url": "https://jobs.bilibili.com/campus/positions?token=f672d580-2e82-4ec5-aa6f-b69839c9245b&page=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "D74S43" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFuYgX", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "京东" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法、软开、产品、运营、市场、职能、设计、金融" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、成都、香港、广州等诸多城市" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d182ff333756b5b4598bc61ebb9c7e1110f68d673209883c02a7873c8ceb0411", + "text": "点击内推", + "url": "https://campus.jd.com/api/wx/position/index#/?emplErp=XIWC0Q" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XIWC0Q" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "🚀 极简应聘流程\n1⃣ 随时网申(重点蹲7-9月!)\n2⃣ 简历过筛→24h内发测评\n3⃣ 无笔试!(特殊岗位除外)\n三轮面试通过后等Offer!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHt43i", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "米哈游" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "1. 程序&技术💻:引擎、客户端、服务端、大模型AI算法、高性能计算、测试开发、平台运维\n2. 美术&表现🎨:原画、3D建模、动画、特效、UI交互、技术美术\n3. 产品策划📝:系统、战斗、数值、关卡、技术策划\n4. 运营📊:用户运营、社区运营、活动运营、数据分析运营\n5. 市场商务🤝:品牌、媒介、商业化、IP商务合作\n6. 国际化🌍:海外本地化、全球市场运营\n7. 质量管理✅:游戏测试、本地化测试、质量管控\n8. 综合职能📋:项目管理、人力、财务等职能岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "955e312eae46599625218a1b823cac4d9433d67f2a15e07e697426d2209564e8", + "text": "点击内推", + "url": "https://jobs.mihoyo.com/m/?recommendationCode=JYBZ&isRecommendation=true#/campus/position" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "JYBZ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0zIim", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "星宸科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "芯片岗、算法岗、嵌入式软件岗、供应链岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、厦门、深圳、成都、杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e08f976488a186319b28ad1e78a780789c740191b33bece34c45fa59f2a3949c", + "text": "点击内推", + "url": "https://sigmastar.zhiye.com/campus/jobs?shareId=93832c04-a9ad-444d-ab44-ef69d287cfc0&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ES3GS0" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvQKvH", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "4399游戏" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "客户端/服务端开发、TA、原画、特效、系统/数值策划、全球化发行、市场、人力财务等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c164b290b47ee01bcb7be828da37b9fa76e8c2702770d3f040a7fff434ab7a4c", + "text": "点击内推", + "url": "https://hr.4399om.com/weixin/?r=job/agent&type=2&isOpen=0&jobTableType=1&code=tarqs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "tarqs" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rZ4N50", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "柠檬微趣" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "测试,运营,策划,后台,美术,客户端,数据,运维,游戏引擎" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c11152ff5a0cf30702792b70481044a50a277fcf639d6d7d53eb4b533a5b6ce6", + "text": "点击内推", + "url": "https://app.mokahr.com/su/mmzije" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTAmUk2" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "re638T", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "招商银行·招银网络科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv", + "oxmhI7" + ], + "value": [ + "银行", + "软件" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "后端开发工程师、前端开发工程师、算法工程师、运维研发工程师、测试开发工程师 " + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、杭州、成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b6c586cecea40975ef738798cf87842364cd2f6a0987b08465897b41839a66ca", + "text": "点击内推", + "url": "https://cmbnt.cmbchina.com/pages/bindInvited.html?qrCode=A469BBB2FD1247CFA784BB58567FD9F9&rand=1782880077159&blNtCode=XEYHBV" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XEYHBV" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "先绑定内推码后,会自动跳转到网申页面" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rXk26P", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Shopee研发中心" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发岗、算法岗、产品岗、职能岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c980b914f2e88eed60367181550cc54bc93ea2eef86cfb1e92a27fd378e3ccb7", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/shopee/2962?recommendCode=DSbqCArb#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSbqCArb" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "网申/内推 ➔ 笔试 ➔ 2~3轮专业面试 ➔ HR沟通 ➔ Offer" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rP9Zbd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "汇川技术" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o1T8xw" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术、营销、质量、技能、供应链管理、职能" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州、南京、深圳、上海、西安、北京、常州、武汉、济南、岳阳、日本、泰国等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8ad40648a2b49784f87029532105fcc4c23e61d0a3ca35ccd12d85375f9e44b4", + "text": "点击内推", + "url": "https://recruit.inovance.com/#/jobs?ref=ACVRMG9" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ACVRMG9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rv9UP7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "聚宽投资" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "数据开发工程师、量化开发工程师、大模型应用工程师、AI Infra工程师、AI算法研究员、股票因子量化研究员、基本面量化研究员、低频CTA研究员、CTA日内研究员、多资产量化研究员" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "657d68579c63ec83b9323a363da025f38d11f082e5b18f443973668a4507ce64", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/joinquant/92347?recommendCode=DSEZ5USw#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSEZ5USw" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rU6MqI", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "四方继保" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "orec3p" + ], + "value": [ + "电气" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发、管培生(品牌宣传方向、人力资源方向)、项目管理、销售" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、武汉、南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "32bd26dcba4e52b2776708f13cecdde5c1b37c9830f270cc2ceffa2ff0ed1c8c", + "text": "点击内推", + "url": "https://sf-auto1.zhiye.com/campus/jobs?shareId=f80ed807-569c-4c60-8f6a-26c413e67a24&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVKPT2" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUt0oV", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智源研究院" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ohxwkm", + "op7bJ1" + ], + "value": [ + "研究院", + "AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研究员(ScientistAl)\n研究员(AI系统与基础模型)\n研究员(Al for Science)\n研究员(人形机器人)\n研究员(具身大模型算法)\n工程师(Agent算法开发)\n研究员(世界模型)\n研究员(智能体-评测)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b695ec2e696398aec7d9551df738210ad2979932069f4d7ee16c6e099ece7fa7", + "text": "点击内推", + "url": "https://app.mokahr.com/su/vmkW8" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTAezxn" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rSs5CN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "银河通用" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "多模态大模型、操作算法、规划控制、大硬件、系统开发等不同需求方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、深圳、苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a55804d2f708657218fb7a4cad8cdbd10ba1d6c02946a1a3fe499dbcab00d184", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/yinhetongyong/165930?recommendCode=DSK31aF4#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSK31aF4" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVsFb7", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "合合信息" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "op7bJ1" + ], + "value": [ + "AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法类、技术类、产品类、运营类、数据类(岗位陆续上新)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、苏州、广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2490a19a9e338404f568f3dee6c1fda42e39ebe9ff8cf119ce18793a02be7cfd", + "text": "点击内推", + "url": "https://intsig.zhiye.com/campus/jobs?shareId=e6e7fbbb-ab09-45e8-9beb-2eeaa798a4ff&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVVP9J" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "📸 扫描全能王|📇 名片全能王|📊 启信宝|📑 TextIn" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2KZnm", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "远景能源" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、产品类、工艺开发类、深度制造类、供应链类、职能类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京、无锡、海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7abd1be300da4b43f1f863782e0c6670f7f186d8f2f6d1fdaf5b48a66a19a36c", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/envisiongroup/43123?recommendCode=DS9TDqgg#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS9TDqgg" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "每个人仅可投递一次,投递后无法继续投递其他岗位,请认真对待!本内推码仅适用于远景能源!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rsHEwv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "Momenta" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "训练推理优化 / 世界模型 / 端到端大模型 / 决策规划算法" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、苏州、深圳、广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "4c217ecf8425ff8b0f3a18b2fd2c716fb98c833c40ced1be5034855e451d4ccf", + "text": "点击内推", + "url": "https://momenta.jobs.feishu.cn/s/Ru4fSx0PWKA" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "RGZ7E34" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "薪资很高,要求也较高" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHOcvJ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "高标科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oXM6DO" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、销服类、供应类、职能类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞、天津、重庆、无锡、徐州、台州、德国、印尼、越南等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7f101bae27618978027805335a10ce70cf188b3697f5fbace79b2f1d5f4d3196", + "text": "点击内推", + "url": "https://kjgb.zhiye.com/campus/jobs?shareId=1dbe0b06-a6db-4ff4-8a5f-dbe61824ba3c&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ESKM3S" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "研发类硕士21~35万/年,本科&非研发类12-21万/年;派驻海外岗位额外补贴1.4万+/月!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rGzVpS", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "燧原科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oU9Xs2" + ], + "value": [ + "AI芯片" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "嵌入式驱动开发工程师,AI开发工程师、芯片设计工程师、软件应用工程师、固件开发工程师,测试开发工程师等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "309a1ed9d4f52c6d266db4a545e7161a7345460439656837f6bc3ed6390af15b", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/enflame/168420?locale=zh-CN#/home" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTAtVtn" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "简历格式:姓名-学校-投递岗位" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rwujOa", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科大讯飞" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "op7bJ1" + ], + "value": [ + "AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "后端/前端/嵌入式/测试研发、产品经理、解决方案、市场营销、职能、视觉交互设计等岗位全覆盖" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥、西安、武汉等多地同步开放" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7415c0c24bb256b4ff5e919b1cc2af8c80abfa2b02823ab2d84ff8908260c171", + "text": "点击内推", + "url": "https://iflytek.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVVRHT" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rfPHov", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "埃科光电" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oh3DGz" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "FPGA硬件开发、嵌入式开发、软件开发、图像算法、光学系统、结构设计" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥、成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c51eef2d64f1336f5a3fbbc759451b773df6a36daf8ea95cfce567067cfd00d1", + "text": "点击内推", + "url": "http://career.i-tek.cn/" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XDYXF040" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "简历命名格式:内推码+应聘岗位-姓名-学校-学历" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJS796", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "影石Insta360" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oJXvqe" + ], + "value": [ + "全景相机" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类、产品类、业务类、综合类、艺术类、供应链类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、珠海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "1f379cd3cad2cb5676c2ec9e28eeea4aa49fa262d80dc4d18e1f86b5de7d2ecc", + "text": "点击内推", + "url": "https://arashivision.jobs.feishu.cn/s/h4hVxa27KuQ" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "B2XV129" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "全景相机全球市场占有率NO.1,影像行业龙头!产品远销全球200+国家和地区,营收规模在五年内翻10倍!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7ittd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "兴业银行 · TouchCIB 数字兴业科技挑战赛" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ouqxPv" + ], + "value": [ + "银行" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发赛道 / AI赛道" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "/" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d1e3cb457351b1ee61a2041fa57925d29cd1c636987705d6b8d4d56f88d68edc", + "text": "点击内推", + "url": "https://f.wps.cn/g/pcsiDheT/" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XYWYL" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "7月30截止报名,秋招可直通终面" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raW6qk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "网易互娱游戏" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "策划 / 技术 / 美术 / 测试 / 用户体验 / 市场 / 运营 / PM 等多类岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州、杭州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "cde5ddf359389a51245a2eae04fda64ddf70610ea88f4614a3ee138a26834344", + "text": "点击内推", + "url": "https://campus.game.163.com/?referralCode=KUzqkE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "KUzqkE" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "与网易雷火互相独立,互不影响" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCGEny", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "原力灵机" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "具身智能VLA大模型、仿真、强化学\n习、灵巧手、运控、感知算法、机器人系统开发、后端开发、产品经理等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "75bb3303118fc36080857fc817bdee0a90d2f7f1950d4befb9dd5c7e666a9bb1", + "text": "点击内推", + "url": "https://dexmal-inc.jobs.feishu.cn/s/1UfyVbln2f0" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "WHB7AKR" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVYQoR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卓驭(原大疆车载)" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "209个岗位,比较全" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、杭州、成都等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "577d0da5b3d9adfa03937877e44b4e328f1d5e4825102e78fc499a76312140e2", + "text": "点击内推", + "url": "https://neitui.italent.cn/zyt-hr/sharejobs?shareId=28e97bd5-bd19-4591-a26c-032a619bf16f&language=zh_CN&rt=1\r" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ISKETS" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rBLf7B", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "普渡机器人" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "VLA大模型、世界模型、SLAM、感知/规划/强化学习、人形机器人控制" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ca461ac8b468d0e2539214a1cea27e933b72bc987483fba06090ea99d52c5664", + "text": "点击内推", + "url": "https://pudutech1.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ESKRVB" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rR18bk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "OPPO" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法、软件、硬件、营销、产品等多种类100+岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、东莞、成都、上海、北京、西安、南京、武汉等8+城市可选择" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3e149355d059716e842dd314302da09d680c47d2bc8f913ff6dcff3dda04646f", + "text": "点击内推", + "url": "https://careers.oppo.com/university/oppo/campus " + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "X7458824" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "8月6日陆续发放笔试和测评-8月10日开启面试-8月底开Offer" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rkfgYy", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "网易雷火" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术研发类:客户端/服务端开发、引擎/图形渲染、AI算法、测试开发、数据、安全、工具开发" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、上海、广州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "02f0a8582b26e9e77107f0a4913eb01fa7fcd189ed6a6db14ff03d162ea8dfbe", + "text": "点击内推", + "url": "https://xiaozhao.leihuo.netease.com/neitui/#/?introduceId=C2p5HB4JKaqMp6OL" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "无需内推码,内推链接即可" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "网易游戏/网易雷火/网易互联网互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rLaYTd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "凯读投资-投研工程方向" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "游戏策划类:系统/数值/战斗/关卡/世界观/商业化策划" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ac9092074e7d13cdd3347d9bab5605af638aad01b110e2a5707ec4d9c3d3550e", + "text": "点击内推", + "url": "https://app.mokahr.com/su/9YIQa" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTAnhP4" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不晚于2026年12月底入职,实习时间不少于3个月" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r8Itqw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智元机器人" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "美术设计类:3D角色/场景、动画、特效、UI、概念设计、技术美术" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海(核心研发)、北京、深圳、美国旧金山" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "bcf609c19fa754d69428d9ac715bb816ac9dd3fca4511eb090384f28135a8b7c", + "text": "点击内推", + "url": "https://agirobot.jobs.feishu.cn/s/duqxHdvy8vA" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "PAPEMUH" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rxpFRs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "文远知行WeRide" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "综合职能类:市场营销、用户研究、项目管理、运营、职能管培" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、深圳、广州、武汉" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4ecb1279df28b3d459e26cf6e060922d14c4a1127abbe4e4ab50ca4142df484e", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/jingchi/2137?recommendCode=DS4RFE7A#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS4RFE7A" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "全球通用自动驾驶第一股,也是全球Robotaxi第一股" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ru6nbN", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "思特威" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oh3DGz" + ], + "value": [ + "电子/半导体" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "数字/模拟电路设计、数字验证、AI算法、AI芯片、芯片原型、性能建模、SOC图像算法等集成电路、AI视觉类岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "3b6887fed4dcc3f28734e5004b489528337f87afc5ae6675aac2d3be2d3fb7b0", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/smartsenstech1/56088?recommendCode=DS86VXGW#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS86VXGW" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "岗位陆续上新" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rcQzO1", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "涵盖5大方向,共74个细分职位:\n1. 算法类:大模型算法、多模态算法、智能体、自动驾驶算法、AI异构计算等。\n2. 产品类:AI大模型产品经理、产品运营等。\n3. 政企类:政策研究、政府事务、战略合作与业务发展等。\n4. 销售类:政企行业解决方案和服务等。\n5. 综合类:人力资源、财务、法务、战略分析、品牌市场等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、杭州、成都、郑州、广州、大连、苏州、厦门、重庆、香港、新加坡等全国及海外多城" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "aabc9798535d1baba795542901432bbd03b8f502f93cb5c5007292875b7cf96b", + "text": "点击内推", + "url": "https://dwz.cn/kb1pF3t7" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "IZH1K9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "本项目为秋招正式批,每周四笔试" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9a0mW", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "微步在线" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发、安全、产品、设计、销售管培、市场运营" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、杭州、成都、武汉、香港等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f90e41c70bb7f4987bfede4accc7d748cca35fc86f4a8628bba50b16d746bf9f", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/threatbook/39679?recommendCode=DSZ8X837#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSZ8X837" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "本科 18W 起,冲刺 35W|硕士 20W 起,冲刺 40W" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhgCzC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小鹏汽车" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oyzKNG" + ], + "value": [ + "车企&自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "自动驾驶板块、数据智能板块、制造与工艺板块、测试板块、国际营销服板块、芯片板块智能座舱板块、智能机器人板块、汽车研发板块等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州、北京、深圳、上海等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "b31faff57ebf993424bd2f149353df86cab05fa1a26c0111a61c8a9eb1dec82f", + "text": "点击内推", + "url": "https://xiaopeng.jobs.feishu.cn/s/0GzPuBkap7Y" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "T35E781" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "八险一金、期权激励、餐补零食、专属长假、节日福利全覆盖" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r5pp0q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "元戎启行" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "项目经理、产品经理、大模型算法工程师、软件工程师、后端开发工程师、前端开发工程师、AIInfra工程师、导航地图算法工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、深圳、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8b3746c4c9413936a5ec9c5e9f1afe1f64215246f0239278a6089a2c354dfa12", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/deeproute/145894#/home " + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTA6VSb" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "此项目为秋招正式批、WLB,工作生活平衡,不卷,薪酬待遇行业第一梯队" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7jGz5", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度-管理培训生" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "管培生" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "555a27e8d32a288bae7f75d5462692398d16abae4d3d442a0265e81149d3cfdf", + "text": "点击内推", + "url": "https://dwz.cn/kb1pF3t7" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "IZH1K9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不同招聘项目可以同时投递" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rRVJjK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "京东-TET管理培训生" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "物流方向(热招)、技术方向(热招)、产品方向、综合方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c34d93a00d104d0629e4f1f9ecbd83dcf22ff35c3bcba0ff9986388239abe621", + "text": "点击内推", + "url": "https://campus.jd.com/api/wx/position/index#/?emplErp=XIWC0Q" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XIWC0Q" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不同招聘项目可以同时投递" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "ryj6gz", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "MiniMax" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "owxl46" + ], + "value": [ + "大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型算法、前后端开发、产品、数据、运营、职能岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海(徐汇新研大厦)、北京;高端研究员可支持香港/旧金山/伦敦办公" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "0da551d813203437d037cfb6d441b7f6874ca3b67e249902817c5108a51b303a", + "text": "点击内推", + "url": "https://vrfi1sk8a0.jobs.feishu.cn/s/lAUlOwSiqhA" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "5JT5XJZ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "行业顶薪+完整期权、餐补住房补贴、顶配设备、大牛导师、扁平化管理、极速面试流程" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "raZhmT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "DJI 大疆" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oXM6DO" + ], + "value": [ + "科技" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法类/软件类/硬件类/芯片类等等,共12大类 100+岗位全面放开投递" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d93e3c5b9679e59e7e179b7dc4b75ded9064e2324c48ef0525b2fc85e51d52ad", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus-recruitment/dji/143359?recommendCode=DS6PgSTy#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS6PgSTy" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不设网申截止时间,招满即止!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rMg0p6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "基恩士" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oH20U5" + ], + "value": [ + "外企" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oPqH8J" + ], + "value": [ + "27届秋招" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "销售工程师/销售" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国多地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "fa4e1f39668d119700e49b84bae75c539fea9b3eaf26942fb41bc201f9f93149", + "text": "点击内推", + "url": "https://keyence.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVBG81" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "年薪18~31万,外企基本都以销售为主" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtTba6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "亿联网络" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "okLdCJ" + ], + "value": [ + "AI应用" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、营销类、产品类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "厦门、北京、上海、深圳等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ff357b84a79e2044909dbf17314bc0a91dfa0f1ca1ae88ffc75ca7d197c4e02d", + "text": "点击内推", + "url": "https://yealink.zhiye.com/campus/jobs?shareId=c5cebf06-efb6-4392-8137-21d13a0041f1&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVBJVJ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "提前批结果不影响秋招,部分岗位仅在提前批开放" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHycWD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "搜狐集团AI专项" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI算法、全栈研发等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8dc462a1dea9124770dde3b5c2605927db4e55acfdeea953bd8df0e8b7a111da", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/sohu/36036?recommendCode=DSfMDgP7#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSfMDgP7" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvbwFB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "帆软" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oF0MBl" + ], + "value": [ + "数据分析" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发、产品、设计、销售、职能" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "南京、杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "db08d3f9b5167985cf133e8d5bdcd8e69976affb3d8bad72f7d03fae17dac727", + "text": "点击内推", + "url": "https://t6ixa9nyl6.jiandaoyun.com/f/65e1a1308ce7672fded0f0cf?ext=XDUWYL" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XDUWYL" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不影响正式批再投递 | SP Offer占比更高" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7C9cd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "传音控股 TAIG-AI顶尖人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法工程师:语音识别/语音合成/NLP/多模态大模型/CV计算机视觉" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、深圳、重庆,海外站点可选" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "8f1f94419cc8a358aebbbd36e5a403ab1d7d949544691c00c6acd2efa042fc6c", + "text": "点击内推", + "url": "https://transsion.zhiye.com/4/jobs?shareId=4e82e6dc-f8fa-47fa-a771-6d39528654a4&shareSource=2" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EZ3MSV" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rtDNVs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "九坤投资-技术类“梧桐计划”" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odnRpT" + ], + "value": [ + "量化" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "影像算法工程师:计算摄影、人像算法、AIGC、视频算法、高性能预研" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ed1de02899fdc37e6444bb22928d19150b19269d95b7dfe54f559d09b088aefc", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/ubiquantrecruit/37031?recommendCode=DS44SrGB#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS44SrGB" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rppCZq", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "搜狐畅游" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI系统工程师、AI产品经理、端侧大模型推理研发" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f9e9b10e09ddb7c5fb866061f9d675b0b35fb750526e98bba0f23d2633952691", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/cyou-inc/42233?recommendCode=DSZWDv2Q#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSZWDv2Q" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "每个同学最多可以投递两个岗位,优先处理第一志愿" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r1bDyC", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "正浩创新" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oouQ0d" + ], + "value": [ + "储能" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "产品类、研发类、营销类、供应链类、职能类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、苏州、西安" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "111637e856e9633c3f81fb7f13b6f901f2678ccd4d472bc140cee4567369562a", + "text": "点击内推", + "url": "https://jobs.ecoflow.com/s/ReFLZ92BTWA" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "TQETC6T" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "行业TOP薪酬、多重员工福利、部分岗位同学薪酬最高可达50w,特别优秀同学可配股" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rhVjaQ", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "腾讯音乐2026技术大咖计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "1. 技术研究-音乐大模型方向(内容业务线)\n2. 技术研究-大模型加速方向\n3. 技术研究-音乐大模型方向(QQ音乐业务线)\n4. 技术研究-歌词大模型方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、广州、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "54cce7c88d1a311560e862181ea9f19fd5cfc3ee2631f784b01c0dc9108c83f9", + "text": "点击内推", + "url": "https://join.tencentmusic.com/campus/post?type=40" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS2CQSTW" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "招募对象:2026.9-2027.12毕业的博士" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2tQw8", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "鹰角网络" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "场景模型(提前批)\n角色模型(提前批)\n游戏客户端(提前批)\n战斗策划(策划专项)\n关卡策划(策划专项)\n游戏引擎开发(提前批)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "d15be7dc18a235e4eeae7fd20e3aae47b7f2e3b6229284b038065c8931975ed6", + "text": "点击内推", + "url": "https://app.mokahr.com/m/recommendation-apply/hypergryph/26594?sharePageId=4654413&recommendCode=NTAbCVd&codeType=1#/recommendation/page/4654413" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "NTAbCvd" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "提前批次多一次投递机会,与正式批资格不冲突,策划专项岗位更有免笔试机会!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r04aF9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "蔚来汽车" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oFXWio" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "芯片、大模型/AI算法、智能辅助驾驶、智能座舱、AI安全、电池系统" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "c7b536cd5dcc7184024f7bea7f61c5b0d1583025bdb2af0a5e654bcbbb35c079", + "text": "点击内推", + "url": "https://nio.jobs.feishu.cn/s/Jna2FxMpAAE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "J6BQ5FK" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "主要为技术方向" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rFm0SY", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "莉莉丝游戏" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术 / 数值 / 关卡策划、引擎开发、战略分析、发行管培、2D动画" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "d7306724b3848b1a94e419a9f0650911224b21cf4cf857c514bcb9162ef02da2", + "text": "点击内推", + "url": "https://lilithgames.jobs.feishu.cn/s/OPalt6jhtqg" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "TKZ25VK" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "不占用正式批机会" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rEZBqR", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "普源精电RIGOL" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oQciCK" + ], + "value": [ + "硬件" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "苏州、北京、上海、西安、深圳" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "苏州、北京、上海、西安、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "aaa0c7c21dd90cf7257a94d9d6de9dcf4db906cfa790c08c76889b33784f7057", + "text": "点击内推", + "url": "https://rigolportal.jobs.feishu.cn/s/j5tjcIviksE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "2GDGXF6" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r0Ybc3", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "点点互动「Elite Program+」人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "系统策划、数值策划\n全球广告创意策划、全球广告投放\nAI agent、AI算法\n客户端开发、数据分析" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、广州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "802b4b1bd8e570291c3437f91c0c619dbb9324504b268737f74027b5694bebc7", + "text": "点击内推", + "url": "http://career.centurygames.cn/4/jobs?shareId=39759d96-0c92-4094-bfac-4190b88a9582&shareSource=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ESKPSK" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "笔试(8月31日前投递全免)" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpEHVw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "自变量机器人" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "✅VLA 算法工程师\n✅世界模型算法工程师\n✅灵巧手算法工程师\n✅大模型Infra工程师\n✅强化学习算法工程师\n✅运控算法工程师\n✅嵌入式软件工程师\n✅机械结构工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c7482c8c934b3c3b877070020f7db625fcb3748c07630c58637875753c945e51", + "text": "点击内推", + "url": "https://x2-robot.jobs.feishu.cn/referral/m/position/share/?token=NTsxNzgzNDgxMjMyNDQ3Ozc2MjYyMTQzODE3NTEyMjUyODY7NzYyOTU3MjQwNzU5MDMyNDUyMTsxLzE" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "T3H1QFP" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "聚焦\"通用具身智能大模型\"的研发,以真实世界数据为主要数据来源,构建具备精细操作能力的通用机器人,是国内最早采用完全端到端路径实现通用具身智能大模型的公司之一" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r4pA7o", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "天锐星通" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "天线工程师、射频工程师、逻辑工程师、嵌入式工程师、 硬件工程师、结构工程师、测试方法研究工程师、AI agent工程师、模拟IC设计工程师(上海)、射频IC设计工程师(南京)、雷达系统研发工程师(南京)" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "成都、上海、南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "ce452b04c0f6632da068f40ae6c2bccb2551b8bc330380ab75b13a9dbf2a0e11", + "text": "点击内推", + "url": "https://t-ray.zhiye.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVKM9A" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "深耕毫米波相控阵领域,荣获2023国家技术发明二等奖,技术实力强,发展前景好,团队氛围棒!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmrXMK", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "杰瑞集团" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o1T8xw" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术研发类、青年合伙人计划" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、成都、天津、烟台等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f899c28d1eb1decebc26abae8ff315d23970581d0acc5cf84c37d350c98f34ef", + "text": "点击内推", + "url": "https://future.jereh.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ESVPV3" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "青年合伙人计划:平均40w+\n技术研发类:硕士25w+表现突出者38W+" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rD8Uy6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "米哈游-技术提前批" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "程序&技术类/质量管理类/产品策划类/美术&表现类/国际化类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "海外:美国、加拿大、迪拜、沙特、科威特、澳大利亚、巴西、俄罗斯等50余个国家和地区分支机构" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e64ae4f55333205f2e632fe9051bdb8cacffa43242bb8225b8932de9314a3acf", + "text": "点击内推", + "url": "https://jobs.mihoyo.com/m/?recommendationCode=JYBZ&isRecommendation=true#/campus/position" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "JYBZ" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "网申时间:7月6日-7月27日" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "7.27" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rNfg29", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拼多多" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类,运营类,职能类,产品类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2950f9b261c49a5c14d19344c560de16c00fa72861cbdab9b2054e79d3d56774", + "text": "点击内推", + "url": "https://careers.pddglobalhr.com/campus/grad?t=ciJDRkZQep" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ciJDRkZQep" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "robY4B", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "RoboSense速腾聚创" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oSbuR8" + ], + "value": [ + "激光雷达" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发技术、产品管理" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、天津、苏州、宁波、海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "a9ce17686d3564aa970d8078cb06eb9fac5913c0246e52e651a265dc344eaa61", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/robosense/69887?recommendCode=DSn97ySU#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSn97ySU" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUPp2A", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科大讯飞-飞凡计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "owxl46" + ], + "value": [ + "大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发方向、营销方向、产品方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥、北京、西安、广州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4693d16228c79fb4b247811cfdc9c61dc67eac1b6173e76c3b32cdcf714709dd", + "text": "点击内推", + "url": "https://iflytek.zhiye.com/5/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVVRHT" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "与后续秋招正式批互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rUlBRT", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "智元机器人优才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olW0ON" + ], + "value": [ + "机器人/AI" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "世界模型算法\n具身Agent算法\n空间智能算法\n具身算法\n运控算法\n多模态交互算法\n具身智能物理引擎仿真/重建与生成算法\nAI Infra\n数据 Infra\n机器人本体系统" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海 、北京、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "896000b5b7760ee41020405d529941abcc6808b56fe3d5b2f95cb178b95ecf94", + "text": "点击内推", + "url": "https://agirobot.jobs.feishu.cn/s/duqxHdvy8vA" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "PAPEMUH" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rrEAjD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "卓驭「领航者」顶尖人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oqxffT" + ], + "value": [ + "自动驾驶" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "多模态大模型预训练算法岗\n多模态大模型后训练算法岗\n多模态大模型数据与评测算法岗\n大模型算法岗(机器人移动后训练&应用)\n端到端领航算法岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、北京、香港" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "4cea3d750843a7f9135fbcd9b11c3b25c5698117b4eae3d8745255d67005876f", + "text": "点击内推", + "url": "https://neitui.italent.cn/zyt-hr/sharejobs?shareId=15f22f0c-fce1-4568-a242-04500d5d2320&language=zh_CN&rt=5" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ISKETS" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "原大疆车载" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rJVBBk", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拓竹研发提前批" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ozilHZ" + ], + "value": [ + "3D打印独角兽" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "算法、软件、嵌入式、硬件、机械、材料、设计生态" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、上海、武汉、杭州、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "230c028380545187c2e927a07b5b89f184ce8af18a5bab072cdf65afccafb321", + "text": "点击内推", + "url": "https://bambulab.jobs.feishu.cn/s/BNCag54l0zM" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XT76S61" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "大厂薪酬+高额年终+期权激励" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDGFrL", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "万得Wind" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "olrnRh" + ], + "value": [ + "金融" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "人工智能类、软件研发类、数据类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、南京、苏州、扬州、深圳、旧金山/硅谷" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "6713173d860936832d1ec8be85e4c1cee83568a36fcf59e3607d89c2fba6d563", + "text": "点击内推", + "url": "https://www.wind.com.cn/portal/zh/JoinUs/recruit.html?positionType=9002" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "czl2027" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "参与提前批多一次机会,提前批次的结果不影响正式秋招,提前批未录取同学可再次投递" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rpwEW9", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "vivo蓝极星计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "影像与计算机视觉、人工智能与大模型、具身智能、系统软件与嵌入式、运动健康与核心器件等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "东莞、深圳、杭州等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "f63426ef3f09f8d04d4fbeddd0ac8a65c141c556a5cec7735f7c90a220024ab3", + "text": "点击内推", + "url": "https://hr-campus.vivo.com/campus/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVSE2S" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "面向2027届博士" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rogJua", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "OPPO「Color派」实战训练营" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "四大业务赛道:流畅|AI应用|生产力|相册" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "线上" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "62556508b010845d7b72beb1660b3e8164b99df94afcc3f2aff2ff21ac26a86a", + "text": "点击内推", + "url": "https://t.oppo.com/2OMrtm" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "X7458824" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "面向2027届应届毕业生,线上挑战真实业务课题,深度调用AI工具套件,硬核交付赢奖金+校招Offer直通!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rlcWSd", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "禾赛科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oSbuR8" + ], + "value": [ + "激光雷达" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "空间智能方向、机器人动力模组方向、雷达研发、智能制造&质量方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、杭州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "233a797253c82c55c4aa373d7ad6584837f1da0770948ff410476737bb9099c7", + "text": "点击内推", + "url": "https://kwh0jtf778.jobs.feishu.cn/229043/m/?external_referral_code=2XD6KK4" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "无需内推码,内推链接即可" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzgt39", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "科大讯飞-飞星计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "op7bJ1", + "owxl46" + ], + "value": [ + "AI", + "大模型" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI研究算法工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "合肥、北京、西安、广州、上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "73e5f043be223c279cfdd35e96926e916b64fdbc278ba78d229910a34d9b1c09", + "text": "点击内推", + "url": "https://iflytek.zhiye.com/4/jobs?memory=%7B%7D&silence=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "EVVRHT" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "与后续秋招正式批互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rWivJB", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "百度-AIDU计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型算法、多模态、智能体、自动驾驶、AI异构计算、语音技术……" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、成都、上海、武汉、广州、深圳、杭州、大连、西安、香港、重庆等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "c10ee964703598e0b8ee92a32b96ae74af3439c619562f5dc71d55fe6b9afae9", + "text": "点击内推", + "url": "https://dwz.cn/kb1pF3t7" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "IZH1K9" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "每人限投一个AIDU岗位,但可同时投校招常规批,不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rQizpo", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "度小满-顶尖人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "小满摘星计划AI实习岗" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "c4fbc915d32b65fa659b2f2849619a507f77bb1fba0f25c48b04e1b7deedd70c", + "text": "点击内推", + "url": "https://duxiaoman.jobs.feishu.cn/s/8PnkJURNC1U" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "QKMH8N5" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "感受一下互联网的work life balance 实习薪资500~800一天" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rttY5A", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "宇通客车" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oFXWio" + ], + "value": [ + "汽车行业" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "人力/财经/(国内/海外)营销/生产管理管培生/研发技术管培生" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "郑州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "b57f3c4cd9c30399a02c75033ae7df62edc79ea79332dfaa03193b5a3012add1", + "text": "点击内推", + "url": "https://wecruit.hotjob.cn/SU64e7157a1eb80519a8e4efcf/mc/position/campus?acotycoCode=kwivtp&postIdsStr=248403%2C248404%2C248405%2C248406%2C248407%2C248408%2C248409%2C248410%2C235575&recruitType=1&isLimitShowPostScope=1" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "kwivtp" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "2025年营业收入493.8亿、提前批岗位没通过可自动转到校招正式批岗位" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rDfVIp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "远景能源-看备注,主要C9" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "ovY0xi" + ], + "value": [ + "新能源" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI人工智能调度算法工程师 AI风机控制算法工程师 数字孪生建模与算法优化工程师 整机控制与载荷工程师 AI for Energy 算法工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "35a2093dc7a54b543cab25d48981b8fbc769531276fb8a6934acb5c2325b25ed", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/envisiongroup/43123?recommendCode=DS9TDqgg#/jobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DS9TDqgg" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "本项目为秋招顶尖人才项目,每个人仅可投递一次,投递后无法继续投递后续秋招正式岗位请认真对待!本内推码仅适用于远景能源!" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rzItsD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "小米-顶尖人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型、算法、多模态等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、武汉、南京、上海等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "d34989ae4de181bb315cfaa4148e85a21b1e4045bbb43777dafcc6f48ef69f61", + "text": "点击内推", + "url": "https://xiaomi.jobs.f.mioffice.cn/s/8rx9u8O0GUU" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "F9U3RHP" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rO7D2q", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "美团-北斗计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型算法、智能体系统、搜索/推荐算法、自动驾驶、无人机等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳、成都、香港、广州等诸多城市" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4d68134466453e10209e82daabdaff1e6d280dd64cd2264e6201411ff89d0b64", + "text": "点击内推", + "url": "https://zhaopin.meituan.com/m/campus?zp-from=hiring-campus-bole-elephant&staffSsoId=24343714" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "676PQ98" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9hNfp", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "快手-快Star提前批" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型、音视频、AI infra、AI工程与应用、推荐等9大核心研究方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、杭州、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "473753cb326a0bedbbd1082e0728e57bfb5378012f7e0a88f2e8b056a893abc3", + "text": "点击内推", + "url": "https://campus.kuaishou.cn/recruit/campus/e/h5/#/campus/jobs?code=campusAcNwYjK" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "campusAcNwYjK" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "双重保险:没选上快Star,也有机会直接拿快手校招正式Offer" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rh7bTi", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "TP-LINK普联" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oopu7y" + ], + "value": [ + "通信" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "软件类、算法类、硬件类、测试类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳、杭州、北京、南京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "51477ac1da0a7b7528dad0ff0e1959539fdcd29558dddf94292718bd77c576cc", + "text": "点击内推", + "url": "https://hr.tp-link.com.cn/" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XYDS013" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "6月开始发放意向书,先人一步锁定席位" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "6.30截止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "razH19", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "学而思" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odCx1H" + ], + "value": [ + "教培" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "素养教育、国际语言、彼芯托管、竞赛教练、HR实习生" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "全国各地" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 206 + }, + "key": "209808b364480748b3a4aa341ca93120b00ad2861150a90fe55148823a8d56b2", + "text": "点击内推", + "url": "https://recruit.100tal.com/s/v2/QU9JVUNy" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "无需内推码,内推链接即可" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "使用手机投递、15-35W+年薪起,每年4-6次调薪!成长不设限,赚钱不手软" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rmtBth", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "三环集团" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oAwo4J" + ], + "value": [ + "电子材料" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、机电类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "潮州、深圳、成都、德阳、南充、苏州" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "62d27771e0e605036ef96a64f91b681401d865a7d3ec297b6cdde3bba14d17de", + "text": "点击内推", + "url": "https://hr.cctc.cc/" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "828442" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "需要手动填写内推码" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rKXQWv", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "韶音科技" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oB8a9Z" + ], + "value": [ + "运动耳机" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类:算法、嵌入式、软件、硬件、声学、测试等\n产品/设计类:产品经理、工业设计、UI/UX设计\n市场/运营类:品牌营销、电商运营、用户运营\n职能类:人力资源、财务、法务等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "深圳(总部)、香港、海外" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "7deac11c96af0380d349fefd1ff1a047167e09440ef8aa98e44da43978f87427", + "text": "点击内推", + "url": "https://app.mokahr.com/m/campus_apply/aftershokzhr/36940?recommendCode=DSZzfkwd&hash=%23%2Fjobs" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "DSZzfkwd" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "投过实习的也可以投提前批,互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rnvDlD", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "拼多多2027届「云弧计划」" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "大模型算法工程师、AI Infra研发工程师" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "5146e71c7f8198770147948195af689a33dcf96b7a94242613852d36b0272dfd", + "text": "点击内推", + "url": "https://careers.pddglobalhr.com/campus/grad?t=ciJDRkZQep" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "ciJDRkZQep" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "此项目是27届提前批,可获得正式offer,且与后续秋招互不冲突" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rvfvVt", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "京东TGT顶尖青年技术天才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "多模态大模型与应用方向\n空间与具身智能方向\n机器学习方向\nAlInfra方向\n搜索推荐广告方向\n高性能与云计算方向\n安全方向\n大数据方向" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、深圳" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "2226f1594df9b814945e57d318b84212a8dd30544cafd4120c662fd33a048616", + "text": "点击内推", + "url": "https://campus.jd.com" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "XIWC0Q" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "点击“招聘职位”,选择TGT-顶尖青年技术天才计划投递" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r2RJDw", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "海尔顶尖人才计划" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "o1T8xw" + ], + "value": [ + "智能制造" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "oLijjT" + ], + "value": [ + "27届提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "管培方向:LTDP 智领计划-复合型全球领军人才发展计划\n技术方向:GEDP-全球卓越工程师发展计划、MEDP-智造技术工程师发展计划\n市场方向:GMTP-海外市场领航者计划、DMAP-中国区数智市场精英计划" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "青岛" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": "http_error", + "result": "unreachable", + "status_code": 404 + }, + "key": "081be9c95672f9ba86326f6092e45ba41a0bc11628d6ed911c57809770e417fc", + "text": "点击内推", + "url": "https://maker.haier.net/client/campusmobile/customizedjobs/type/top.html?inviter_code=M0VORTE0SG9sK3M9" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "GHJ214" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "候选人网申填写个人简历信息,投递信息下拉栏:职位信息获取途径→“未来规划局推荐”→推荐信息——填写规划局推荐编码" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rw5P8z", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里云" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类,设计类,数据类,运营类,产品类等七大类岗位" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州,北京,上海,成都,广州,深圳,南京,武汉,长沙,厦门,重庆,香港,吉隆坡,西雅图等" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "67d3a251fb3bd776fb0d8a42cf67abb46677f3132c344a057180689157c7f66d", + "text": "点击内推", + "url": "https://campus-talent.alibaba.com/campus/position?campusShareCode=ouaTP08klrnWDputkiBAx0VrgiaOZLeZoWUXO71FTdv%2F22_txOMbayYPEzWKcCi1&batchId=100000760001" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "1RMJRRT" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推阿里云岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rx8FWs", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里灵犀互娱" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oHo84Y" + ], + "value": [ + "游戏" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "策划、技术、美术、 产品 、运营 、营销 、项目管理 、服务体验等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "广州、上海、北京" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推灵犀互娱岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rteYzG", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里淘天集团" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、产品类、设计类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "4222b8131593e7a39f0bd181e94fa3be6518fe90fb9850dd5f8a15266227e840", + "text": "点击内推", + "url": "https://campus-talent.alibaba.com/campus/position?campusShareCode=JCp_oadXb2CerivI9G71Y1ekoBtJdMYvok7CWV6iMo%2FBSwsc%2FzxWs1HcYdksNY39&batchId=100000760001" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "6GJN61D" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推淘天岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r9WJUn", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "菜鸟集团" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、算法类、物流类、销售类等" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、深圳、广州等" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推菜鸟岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rHjuG6", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里云-瓴羊" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "AI研发类、算法类、AI技术服务类、数据类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、北京" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "第一志愿意向是瓴羊的,可以投递这个,优先筛选" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rVADom", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里国际" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、产品类、设计类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、广州、北京" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "415db7f904732e942a0173dda63a53a6b52d76bd75ba7051b4668d0aaa2e9325", + "text": "点击内推", + "url": "https://campus-talent.alibaba.com/campus/position?campusShareCode=JCp_oadXb2CerivI9G71Yz%2FWO1oEY61zaiBmQwGywXKCgOfDdEsZzJmy9mqvbxir&batchId=100000760001" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "6GJN61D" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推阿里国际岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "rCkQ41", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里平头哥" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "oK5jZo" + ], + "value": [ + "芯片IC" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "前端研发、软件研发、平台技术" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "上海、北京、深圳、杭州、成都" + }, + { + "field_id": "ffq904", + "links": [ + { + "availability": { + "checked_at": "2026-08-07T00:40:39Z", + "error_category": null, + "result": "reachable", + "status_code": 200 + }, + "key": "e5342a2f3160e7a19a9794a212ec00c8af3ad8d86672346f7ca74fc555fb4cc6", + "text": "点击内推", + "url": "https://campus-talent.alibaba.com/campus/position?campusShareCode=JCp_oadXb2CerivI9G71Y0jpHxjrus6rJE_CYZGLdsKvQ9OQVOqNKqjk7XIBj4HB&batchId=100000760001&filterParams=%7B%22customDept%22%3A%5B%22PQHNXW%22%5D%7D" + } + ], + "value": "点击内推" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "6GJN61D" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推平头哥岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r7zr8b", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "阿里控股" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "研发类、产品类、设计类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "北京、上海、杭州" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "仅可内推阿里控股岗位。" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-09T14:43:43Z", + "record_id": "r96Tiu", + "removed_at": null, + "status": "active" + }, + { + "fields": [ + { + "field_id": "fv08FQ", + "links": [], + "value": "蚂蚁集团(独立于阿里系,无限复活)" + }, + { + "field_id": "f3OeZe", + "links": [], + "raw_value": [ + "odsQeD" + ], + "value": [ + "互联网" + ] + }, + { + "field_id": "fcthkP", + "links": [], + "raw_value": [ + "opjpfX" + ], + "value": [ + "互联网类秋招/提前批" + ] + }, + { + "field_id": "fVJnBl", + "links": [], + "value": "技术类、运营类、产品类、风险管理类、客户体验类、数据类、设计类、其他类" + }, + { + "field_id": "fEIMlb", + "links": [], + "value": "杭州、上海、北京、成都、深圳等" + }, + { + "field_id": "ffq904", + "links": [], + "value": "" + }, + { + "field_id": "fZLmJt", + "links": [], + "value": "" + }, + { + "field_id": "fjDFTa", + "links": [], + "value": "只有技术类需要笔试\n注意事项:\n1、无限复活(2个意向均结束可以再次投递),一次可以投两个岗位\n2、笔试是独立的,蚂蚁自己有很多场笔试,阿里系是阿里系的笔试" + }, + { + "field_id": "fQL3U5", + "links": [], + "value": {} + }, + { + "field_id": "fRodAA", + "links": [], + "value": "招完即止" + }, + { + "field_id": "f49GK8", + "links": [], + "value": [ + "kyle" + ] + } + ], + "first_seen_at": "2026-08-06T16:41:03Z", + "last_seen_at": "2026-08-06T16:41:03Z", + "record_id": "r9vvQR", + "removed_at": "2026-08-09T14:43:43Z", + "status": "source_removed" + } + ], + "schema": [ + { + "field_id": "fv08FQ", + "name": "公司名称", + "options": [], + "order": 0, + "type": "text", + "type_code": 1 + }, + { + "field_id": "f3OeZe", + "name": "所在行业", + "options": [ + { + "id": "okLdCJ", + "name": "AI应用" + }, + { + "id": "orec3p", + "name": "电气" + }, + { + "id": "oh3DGz", + "name": "电子/半导体" + }, + { + "id": "olW0ON", + "name": "机器人/AI" + }, + { + "id": "oAwo4J", + "name": "电子材料" + }, + { + "id": "o0pnpN", + "name": "ICT" + }, + { + "id": "opFAaL", + "name": "调味品生产" + }, + { + "id": "o9T9xD", + "name": "医药" + }, + { + "id": "oB8a9Z", + "name": "运动耳机" + }, + { + "id": "oFXWio", + "name": "汽车行业" + }, + { + "id": "ohxwkm", + "name": "研究院" + }, + { + "id": "oF0MBl", + "name": "数据分析" + }, + { + "id": "oouQ0d", + "name": "储能" + }, + { + "id": "ozHykl", + "name": "互联网教育" + }, + { + "id": "olrnRh", + "name": "金融" + }, + { + "id": "oyZyIp", + "name": "智能教培" + }, + { + "id": "oWelye", + "name": "IC" + }, + { + "id": "o8JRxV", + "name": "半导体" + }, + { + "id": "odE7MM", + "name": "车企" + }, + { + "id": "o1T8xw", + "name": "智能制造" + }, + { + "id": "oQLpgH", + "name": "事业单位" + }, + { + "id": "oU9Xs2", + "name": "AI芯片" + }, + { + "id": "ozilHZ", + "name": "3D打印独角兽" + }, + { + "id": "oopu7y", + "name": "通信" + }, + { + "id": "owxl46", + "name": "大模型" + }, + { + "id": "o0KoHc", + "name": "母婴科技产品" + }, + { + "id": "oxCURB", + "name": "物联网" + }, + { + "id": "oKNKEw", + "name": "LED显示器" + }, + { + "id": "oUnRld", + "name": "电子雾化" + }, + { + "id": "o2ZaDh", + "name": "智能座舱" + }, + { + "id": "og97f8", + "name": "电商" + }, + { + "id": "obWuUZ", + "name": "光通信" + }, + { + "id": "o1Bu50", + "name": "显示屏" + }, + { + "id": "on6s4x", + "name": "工业机器视觉成像部件" + }, + { + "id": "oyr0YZ", + "name": "零售快消" + }, + { + "id": "oJXvqe", + "name": "全景相机" + }, + { + "id": "okJ5IZ", + "name": "AI智能体" + }, + { + "id": "ouiY7I", + "name": "AI企业应用" + }, + { + "id": "oLVqmD", + "name": "房地产" + }, + { + "id": "ou3MNx", + "name": "生物" + }, + { + "id": "ovY0xi", + "name": "新能源" + }, + { + "id": "oQrCla", + "name": "实训" + }, + { + "id": "oJMGfM", + "name": "互联网金融" + }, + { + "id": "oJ8Jc2", + "name": "金融-一级" + }, + { + "id": "oo60sm", + "name": "人力咨询服务" + }, + { + "id": "oxdWLl", + "name": "手机" + }, + { + "id": "op6r79", + "name": "物流" + }, + { + "id": "odCx1H", + "name": "教培" + }, + { + "id": "oAmle2", + "name": "快消" + }, + { + "id": "o4rX6j", + "name": "会计师事务所" + }, + { + "id": "oLI3a7", + "name": "医药医疗" + }, + { + "id": "oqnzsD", + "name": "制造业" + }, + { + "id": "oHo84Y", + "name": "游戏" + }, + { + "id": "oyzKNG", + "name": "车企&自动驾驶" + }, + { + "id": "odsQeD", + "name": "互联网" + }, + { + "id": "ojQRRs", + "name": "科研/出版社" + }, + { + "id": "oRg4wl", + "name": "国企" + }, + { + "id": "oCuHAK", + "name": "人工智能" + }, + { + "id": "oqxffT", + "name": "自动驾驶" + }, + { + "id": "oK5jZo", + "name": "芯片IC" + }, + { + "id": "o5xFKC", + "name": "软开&算法" + }, + { + "id": "oOm6FB", + "name": "硬件" + }, + { + "id": "oH20U5", + "name": "外企" + }, + { + "id": "ozP59b", + "name": "通讯" + }, + { + "id": "op7bJ1", + "name": "AI" + }, + { + "id": "olyWI5", + "name": "玩具" + }, + { + "id": "oEDFUX", + "name": "管培生" + }, + { + "id": "ouqxPv", + "name": "银行" + }, + { + "id": "odnRpT", + "name": "量化" + }, + { + "id": "oDm0pJ", + "name": "中小厂" + }, + { + "id": "obmKwR", + "name": "Java开发" + }, + { + "id": "ouMGt3", + "name": "ICT服务及应用" + }, + { + "id": "oQciCK", + "name": "硬件" + }, + { + "id": "oz52pz", + "name": "日化" + }, + { + "id": "oaOhGz", + "name": "大规模数据处理" + }, + { + "id": "o6DVpE", + "name": "网络安全" + }, + { + "id": "oSbuR8", + "name": "激光雷达" + }, + { + "id": "oTZ8us", + "name": "自动化" + }, + { + "id": "ocXWUX", + "name": "汽车智能驾驶" + }, + { + "id": "o8LMB8", + "name": "赛车模拟器" + }, + { + "id": "oxmhI7", + "name": "软件" + }, + { + "id": "oSUUxu", + "name": "机器人" + }, + { + "id": "ogSZ9f", + "name": "3D打印" + }, + { + "id": "oXM6DO", + "name": "科技" + } + ], + "order": 1, + "type": "multi_select", + "type_code": 9 + }, + { + "field_id": "fcthkP", + "name": "招聘类型", + "options": [ + { + "id": "opjpfX", + "name": "互联网类秋招/提前批" + }, + { + "id": "oPqH8J", + "name": "27届秋招" + }, + { + "id": "oLijjT", + "name": "27届提前批" + }, + { + "id": "o1Fgvb", + "name": "目前机会较多暑期实习" + }, + { + "id": "o899Mx", + "name": "蚂蚁暑期实习" + }, + { + "id": "ouyliO", + "name": "阿里系暑期实习" + }, + { + "id": "oUtegY", + "name": "27届暑期(转正)实习" + }, + { + "id": "oWVQHq", + "name": "求职训练营" + }, + { + "id": "o0AcMr", + "name": "26届转正实习" + }, + { + "id": "o3rcek", + "name": "26届暑期实习" + }, + { + "id": "o4pLGf", + "name": "25届春招" + }, + { + "id": "o7H6l9", + "name": "25届转正实习" + }, + { + "id": "ooYA3r", + "name": "24届春招" + }, + { + "id": "oGEs48", + "name": "日常实习" + }, + { + "id": "ov1zET", + "name": "25届暑期实习" + }, + { + "id": "oYZbOd", + "name": "25届秋招提前批" + }, + { + "id": "o7DCnO", + "name": "22~24届往届毕业生可投" + }, + { + "id": "oslSiK", + "name": "23届往届可投递" + }, + { + "id": "oOHxb7", + "name": "日常实习(有转正)" + }, + { + "id": "o5OVL9", + "name": "24届和26届也可投递" + }, + { + "id": "ooQqXH", + "name": "26届也可投递" + }, + { + "id": "oz4SUx", + "name": "25届秋招正式批" + }, + { + "id": "o2toHU", + "name": "26届提前批" + }, + { + "id": "oqWJv2", + "name": "顶尖人才计划" + }, + { + "id": "oLg5Aq", + "name": "26届秋招" + }, + { + "id": "o77a1J", + "name": "兼职" + } + ], + "order": 2, + "type": "multi_select", + "type_code": 9 + }, + { + "field_id": "fVJnBl", + "name": "招聘岗位", + "options": [], + "order": 3, + "type": "text", + "type_code": 1 + }, + { + "field_id": "fEIMlb", + "name": "工作地点", + "options": [], + "order": 4, + "type": "text", + "type_code": 1 + }, + { + "field_id": "ffq904", + "name": "内推链接", + "options": [], + "order": 5, + "type": "url", + "type_code": 8 + }, + { + "field_id": "fZLmJt", + "name": "内推码(注意区分大小写)", + "options": [], + "order": 6, + "type": "text", + "type_code": 1 + }, + { + "field_id": "fjDFTa", + "name": "备注", + "options": [], + "order": 7, + "type": "text", + "type_code": 1 + }, + { + "field_id": "fQL3U5", + "name": "笔试时间表", + "options": [], + "order": 8, + "type": "checkbox", + "type_code": 5 + }, + { + "field_id": "fRodAA", + "name": "截止投递日期", + "options": [], + "order": 9, + "type": "text", + "type_code": 1 + }, + { + "field_id": "f49GK8", + "name": "对接人", + "options": [], + "order": 10, + "type": "user", + "type_code": 23 + } + ], + "snapshot": { + "active_count": 118, + "fetched_count": 118, + "historical_count": 119, + "link_hash": "c48f15a6c96566eb7bbc3b50ffee5a85f187fb806381ec38073d70bc293aaea8", + "max_columns": 11, + "page_ranges": [ + [ + 0, + 60 + ], + [ + 61, + 117 + ] + ], + "pagination_complete": true, + "record_id_hash": "107b4556fda0cb85aa6f3a3887a97bcb304721a5294c2735bf3365fd75b01cdb", + "scan_hash": "02c8afda0b95d19cc1a6b6c8140069e2577dbe1d9bde2fff1633745f4ce52b6c", + "source_total": 118, + "synced_at": "2026-08-09T14:43:43Z" + }, + "source": { + "document_id": "DUXJLSnZoTVFhVUVs", + "revision": 11296, + "sheet_id": "tkaHEa", + "source_url": "https://docs.qq.com/smartsheet/DUXJLSnZoTVFhVUVs?tab=tkaHEa", + "view_id": "vKWCWH", + "view_name": "秋招提前批(内推)" + } +} diff --git "a/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/implementation.md" "b/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/implementation.md" new file mode 100644 index 0000000..639c480 --- /dev/null +++ "b/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/implementation.md" @@ -0,0 +1,277 @@ +# 腾讯文档招聘信息同步到 GoClub - 详细实施计划 + +> 本文档根据需求资料和当前项目代码编写。 +> 核心思路:专用账号会话仅以 GitHub Secret 注入临时浏览器;同步程序对两个数据集分别执行结构化全量读取、双遍一致性校验、历史合并、原始链接哈希校验和原子生成,随后由独立 workflow 构建、白名单提交并触发 Pages。;用 DatasetSpec 数据清单驱动共享同步管线,扩展数据集时只增加配置与目标文件。 + +--- + +## 设计决策(Q&A) + +### Q1:如何在无法获得文档所有者 API 或导出授权的条件下,将两个字段不同的数据集准确、完整、可持续地同步到 GoClub? + +使用专用腾讯账号的一次性浏览器会话作为 GitHub Actions Secret。同步程序读取腾讯文档结构化网络数据,分别维护“每日更新”和“秋招提前批”的版本化 JSON 快照与生成页面;只有登录、视图、字段、分页、总量、唯一键和原始链接哈希全部通过校验时才写入。 + +> 选择理由:目标文档的实际记录要求登录,匿名探针只能读取标题和权限元数据。专用账号已经确认可看到两个数据集;GitHub Actions 可复用仓库已有的默认分支检出、Hugo 全站构建、白名单提交和 Pages 触发模式,同时避免用户电脑持续开机。两个源数据集字段不同,独立快照和独立页面可以保留源字段含义并减少页面框架改动。 + +> 复用结论:复用 .github/workflows/daily-question-sync.yml 的并发控制、默认分支、Hugo 构建、变更白名单、机器人提交和 Pages 触发结构;借鉴 scripts/sync_daily_question.py 的确定性生成、输入校验与原子替换方式;继续使用 Hugo Book 的 section 自动发现和 Markdown 渲染。 + +### Q2:如何兼顾最小改动与未来增加同类招聘数据集? + +在同一个同步脚本中定义轻量 DatasetSpec,保存视图名、数据文件、页面文件、排序权重和必要的展示投影;全部数据集共享采集、完整性校验、历史合并与表格渲染流程。 + +> 选择理由:该边界消除两个数据集之间的流程复制,同时避免引入插件系统、通用 ETL 框架、数据库或额外服务,符合仓库规模和最小改动要求。 + +> 复用结论:继续复用同一个 QQDocsSource、校验器、历史合并器和 Markdown 渲染器。 + +--- + +## 改动总览 + +| 序号 | 文件或平台 | 改动类型 | 说明 | +|---|---|---|---| +| 1 | `content/docs/jobs/_index.md` | 修改 | 复用 main 的“求职就业”一级栏目,保留“内推”并增加两个招聘数据入口。 | +| 2 | `content/docs/jobs/每日更新.md` | 新增 | 生成并展示每日更新数据集,字段按该数据集自身 schema 输出。 | +| 3 | `content/docs/jobs/秋招提前批.md` | 新增 | 生成并展示秋招提前批数据集,字段按该数据集自身 schema 输出。 | +| 5 | `data/jobs/daily-updates.json` | 新增 | 保存每日更新的可审计源快照和历史记录。 | +| 6 | `data/jobs/early-recruitment.json` | 新增 | 保存秋招提前批的可审计源快照和历史记录。 | +| 7 | `scripts/sync_qq_jobs.py` | 新增 | 实现登录态加载、结构化响应采集、完整性校验、历史合并、链接检查和原子生成。 | +| 8 | `tests/test_sync_qq_jobs.py` | 新增 | 覆盖分页完整性、双数据集 schema、去重、多个链接、0/O 原样性、删除保护、原子写入和渲染回读。 | +| 9 | `.github/workflows/qq-jobs-sync.yml` | 新增 | 每 3 小时或手动同步,失败创建或更新 GitHub Issue,成功后白名单提交并触发 Pages。 | +| 10 | `scripts/sync_qq_jobs.py` | 新增 | 定义 DatasetSpec 和 DATASETS 清单,两个数据集共享完整同步管线。 | +| 11 | `assets/_custom.scss` | 修改 | 仅为招聘宽表增加稳定列宽、横向滚动和分页控件样式,其他页面表格保持原样。 | + +--- + +## 步骤 1:接入求职就业一级栏目并新增两个子页面 + +**文件**:`content/docs/jobs/_index.md;content/docs/jobs/每日更新.md;content/docs/jobs/秋招提前批.md` + +**位置**:Hugo front matter 与生成内容 + +复用 main 中 weight 7 的“求职就业”section,保留“内推”子栏目,并增加每日更新和秋招提前批子页面。子页面由同步脚本确定性生成,不增加 layout,并只增加招聘表格专用的分页与横向滚动样式。 + +**当前代码**: +```markdown +最新 main 已提供 content/docs/jobs“求职就业”栏目和“内推”子栏目,贡献者栏目 weight 已为 8。 +``` + +**修改后代码**: +```markdown +保留求职就业 _index.md 的 title、weight、短链与“内推”入口;新增“每日更新”和“秋招提前批”入口,两个子页面分别使用独立标题和排序权重。 +``` + +**执行说明**: + +- 两个子页面分别读取各自 JSON 快照中的 schema,避免字段错位。 +- 页面展示最后成功同步时间、活动记录和已从源表移除的历史记录,不提供腾讯文档源表入口;JSON 快照保留源 URL 用于同步审计。 +- 每条企业记录生成一个表格行,每 15 条分页,首页始终容纳排序后的最新记录,后续新增记录自动推动旧记录后移;每日更新按更新日期降序,同日保持腾讯源顺序;秋招没有更新日期字段时保持腾讯源顺序。 +- 秋招展示层隐藏“内推码”和“对接人”,并将“内推链接”表头显示为“投递链接”;JSON 快照继续保留全部原始字段和值。 + +--- + +## 步骤 2:定义两个独立且可审计的数据快照 + +**文件**:`data/jobs/daily-updates.json;data/jobs/early-recruitment.json` + +**位置**:source、schema、snapshot、records + +每个数据集独立保存文档 ID、视图 ID、视图名、字段 ID/名称/类型/顺序、源端总数、抓取数、记录集合和链接哈希。记录以源 record_id 为主键,字段以 field_id 绑定,链接以 view_id + record_id + field_id + 原始 URL 为唯一键。 + +**当前代码**: +```json +data/jobs 目录当前不存在。 +``` + +**修改后代码**: +```json +每个快照包含 source、schema、snapshot 和 records;records 保存 status、first_seen_at、last_seen_at、removed_at 与字段值/原始链接数组。 +``` + +**执行说明**: + +- 原始 URL 不做大小写、查询参数、片段或字符纠错。 +- 跨数据集相同记录分别保留;同一字段内完全相同的链接唯一键只保留一次。 + +--- + +## 步骤 3:实现登录态结构化采集与完整性门槛 + +**文件**:`scripts/sync_qq_jobs.py` + +**位置**:QQDocsSource、probe_dataset、validate_snapshot + +通过 Playwright 加载临时 storage state 和原文档,捕获腾讯文档结构化网络响应;按视图名称定位两个数据集并遍历到结束游标。连续采集两遍,记录 ID、字段 ID、源总量和原始链接哈希一致后才返回快照。 + +**当前代码**: +```python +当前只有 scripts/sync_daily_question.py,负责每日一问文本写入,不包含腾讯文档读取能力。 +``` + +**修改后代码**: +```python +新增独立 QQDocsSource 适配器和 probe/sync CLI;登录页、安全拦截、缺失视图、缺失稳定 ID、分页未结束、总量不一致或双遍结果不一致均抛出明确错误且不写文件。 +``` + +**执行说明**: + +- 禁止从截图、OCR、单元格展示文本或视觉行号重建 URL。 +- 结构化协议变化时失败关闭,避免把部分数据当作完整数据。 +- 日志只输出数据集名、数量、哈希摘要和错误类别。 + +--- + +## 步骤 4:实现历史合并、删除保护与原子生成 + +**文件**:`scripts/sync_qq_jobs.py` + +**位置**:merge_history、render_markdown、atomic_replace + +将完整新快照与上次成功快照按 record_id 合并。新增记录追加,现有记录覆盖字段更新,缺失记录保留历史;计划任务检测到源记录缺失时先失败并告警,只有手动触发显式确认删除后才标记为源表已移除。所有 JSON 和 Markdown 在临时目录完成并通过回读校验后统一替换。 + +**当前代码**: +```python +仓库没有招聘数据历史合并或生成逻辑。 +``` + +**修改后代码**: +```python +新增确定性 JSON/Markdown 生成、原子替换和 --accept-source-deletions 手动开关;生成后解析页面链接并与源链接集合及 SHA-256 完全比对。 +``` + +**执行说明**: + +- 链接可访问性单独检查并记录,不以跳转后的地址覆盖原链接。 +- 目标站点拒绝 HEAD/GET 时只记录检查结果,不删除源链接。 + +--- + +## 步骤 5:补充聚焦测试 + +**文件**:`tests/test_sync_qq_jobs.py` + +**位置**:unittest 测试类与结构化响应 fixtures + +使用本地 fixtures 验证两个视图字段不同、分页结束、源总量核对、稳定 ID、重复记录、多链接、URL 字符原样、源删除保护、历史保留、原子写入和 HTML href 回读。 + +**当前代码**: +```python +仓库当前没有 tests 目录。 +``` + +**修改后代码**: +```python +新增标准库 unittest 测试;包含 0/O、1/l/I、大小写、查询参数、片段、Markdown 特殊字符和多个链接的回归用例。 +``` + +**执行说明**: + +- 网络协议解析测试使用脱敏 fixtures,不依赖实时腾讯文档。 +- 实时探针作为受 Secret 保护的集成验证,不在 pull_request 事件中运行。 + +--- + +## 步骤 6:新增定时同步与失败告警 workflow + +**文件**:`.github/workflows/qq-jobs-sync.yml` + +**位置**:schedule、workflow_dispatch、sync 与 report_failure jobs + +每 3 小时和手动触发时检出默认分支,在 runner 临时目录解码 storage state,安装固定版本 Playwright/Chromium,执行测试和同步,初始化主题、构建 Hugo、校验变更白名单后提交数据与页面并触发 static.yml。失败 job 创建或更新一个招聘同步故障 Issue。 + +**当前代码**: +```yaml +现有 daily-question-sync.yml 只处理 workflow_dispatch 的单条每日一问投稿。 +``` + +**修改后代码**: +```yaml +新增独立 workflow,permissions 包含 contents: write、actions: write、issues: write;concurrency 禁止并行;Secret 缺失、会话过期、完整性门槛失败或白名单外改动均终止。 +``` + +**执行说明**: + +- storage state 只写入 RUNNER_TEMP,任务结束由 runner 清理。 +- pull_request 和 fork 工作流不会读取该 Secret。 +- Issue 只包含运行 URL、数据集和错误类别,不包含响应正文或凭据。 + +--- + +## 步骤 7:增加轻量数据集描述 + +**文件**:`scripts/sync_qq_jobs.py` + +**位置**:DatasetSpec 与 DATASETS + +使用不可变 dataclass 声明 view_name、data_path、content_path、weight、hidden_fields 和 field_labels;循环执行共享 probe、validate、merge、render。 + +**当前代码**: +```python +scripts/sync_qq_jobs.py 当前不存在。 +``` + +**修改后代码**: +```python +定义 DatasetSpec dataclass,并在 DATASETS 中声明每日更新和秋招提前批两项及各自展示投影。 +``` + +**执行说明**: + +- 不增加插件加载、动态模块发现或外部配置文件。 +- 字段 schema 继续从源数据结构读取并保存在各自快照中。 + +--- + +## 配置文件调整 + +- 文件:`GitHub Repository Secret`;位置:Settings > Secrets and variables > Actions;调整:创建 QQ_DOCS_STORAGE_STATE_B64,保存专用账号 Playwright storage state 的 Base64;会话过期后重复一次可见登录并覆盖该 Secret。;检查:手动运行 probe-only workflow,确认两个数据集名称、记录数和哈希摘要通过。 +- 文件:`.github/workflows/qq-jobs-sync.yml`;位置:on.schedule;调整:使用 0 */3 * * *,按 UTC 每 3 小时运行一次。 +- 文件:`.github/workflows/qq-jobs-sync.yml`;位置:workflow_dispatch.inputs.accept_source_deletions;调整:默认 false;人工核对源表后才允许将缺失记录标记为源表已移除。 + +--- + +## PB 协议调整 + +- 本需求不涉及 + +--- + +## 无极表调整 + +- 本需求不涉及 + +--- + +## 数据流总结 + +专用账号可见登录 -> Playwright storage state -> GitHub Actions 加密 Secret -> runner 临时文件 -> 腾讯文档结构化网络响应 -> 两次全量采集与一致性校验 -> 两个独立 JSON 快照 -> 历史合并与删除保护 -> 两个 Markdown 页面 -> Hugo 全站构建 -> 白名单提交默认分支 -> 触发 Pages 发布。 + +DATASETS 清单 -> 逐数据集调用同一采集/校验/合并/渲染流程 -> 独立 JSON 与 Markdown。 + +--- + +## 测试步骤 + +- 文件:`tests/test_sync_qq_jobs.py`;调整:运行 python3 -m unittest discover -s tests -p test_sync_qq_jobs.py。 +- 文件:`scripts/sync_qq_jobs.py`;调整:使用专用账号会话执行 probe-only,两次采集的视图、schema、记录 ID、总数和链接哈希必须一致。 +- 文件:`Hugo`;调整:运行 hugo --minify,并解析生成 HTML,确认两个页面存在;有效 URL 与快照逐字一致,源值中的控制回车和首尾空白允许按 HTML 标准规范化。 +- 文件:`Git 变更白名单`;调整:workflow 只允许两个 JSON 和两个生成页面发生变化。 +- 文件:`tests/test_sync_qq_jobs.py`;调整:验证两个不同 schema 的 DatasetSpec 共用同步逻辑、一条企业一行、日期降序、秋招字段隐藏与标签改名。 + +## 手工验证 + +- 调整:在当前 feature/qiuzhao 分支实施;首次发布前逐数据集核对源端记录总数、字段名、每行链接数与快照哈希。 +- 调整:在一次性可见浏览器中使用专用账号登录并确认两个数据集可见,生成 storage state 后立即写入 QQ_DOCS_STORAGE_STATE_B64,随后删除本地会话文件。 +- 调整:手动运行 probe-only 验证 GitHub runner 能加载登录态和完整数据,再运行正式同步;任何门槛失败均不发布。 +- 调整:确认 goclub.space 的求职就业、每日更新、秋招提前批页面可访问,且原有内推入口保留;抽查包含 0/O、查询参数和多链接的记录与源文档完全一致。 + +--- + +## 改动风险与注意事项 + +- 腾讯文档登录会话会过期;workflow 会将登录页识别为会话失效并告警,需要人工刷新 Secret。 +- 腾讯可能拦截 GitHub 云端 IP 或修改 newOpenSvc 协议;同步将失败关闭并保留旧数据,无法在无稳定官方接口时承诺永久自动运行。 +- storage state 属于敏感凭据;专用账号应只用于该公开文档,Secret 不进入 PR、日志、Artifact 或仓库文件。 +- 源端在两次采集之间发生修改会造成结果不一致;workflow 重试后仍不一致则延后到下一轮。 +- HTML 会按标准规范化 URL 属性中的控制回车和首尾空白;JSON 快照与生成 Markdown 逐字保留源值,并在写入前回读校验全部链接。当前 1726 条链接中有 4 条源值包含这类空白,其余链接在 Hugo 最终 HTML 中逐字符一致。 +- 首次全量对账通过前只允许探针和测试,不发布未经核验的数据。 +- 腾讯协议差异应封装在 QQDocsSource 内,避免 DatasetSpec 承担协议解析逻辑。 diff --git "a/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/solution.md" "b/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/solution.md" new file mode 100644 index 0000000..54ec1d7 --- /dev/null +++ "b/docs/\350\205\276\350\256\257\346\226\207\346\241\243\346\213\233\350\201\230\344\277\241\346\201\257\345\220\214\346\255\245\345\210\260 GoClub-feature-qiuzhao/solution.md" @@ -0,0 +1,74 @@ +# 腾讯文档招聘信息同步到 GoClub 技术方案 + +## 需求概述 + +从公开腾讯智能表格 DUXJLSnZoTVFhVUVs 的“每日更新”和“秋招提前批”完整同步招聘信息与原始投递链接到 GoClub 现有的“求职就业”一级栏目;两个数据集独立存放;在 feature/qiuzhao 分支实施;每 3 小时自动更新;以专用腾讯账号会话作为 GitHub Actions Secret;要求完整性校验、避免重复和错链、失败保留旧数据、最小改动并保留轻量扩展点。 + +## 项目上下文 + +- 项目:GoClub +- 项目路径:`D:\APP\Path_for_ide\Go\item\GoClub` +- 开始分支:`feature/qiuzhao` + +## 已确认项目事实 + +- Project contains 2000 scannable files.(位置:`D:\APP\Path_for_ide\Go\item\GoClub`) +- GoClub 是 Hugo 静态站,主内容位于 content/docs,推送 main 后由 GitHub Pages workflow 构建发布。(位置:`hugo.toml; .github/workflows/static.yml`) +- 仓库已有 Python 内容同步、Hugo 全站构建、限制变更文件、由 github-actions[bot] 提交并触发发布的自动化模式,可直接复用其结构。(位置:`scripts/sync_daily_question.py; .github/workflows/daily-question-sync.yml`) +- 目标腾讯智能表格公开链接可匿名读取文档元信息,文档 ID 为 DUXJLSnZoTVFhVUVs,内部 padId 为 QrKJvhMQaUEl,给定视图 ID 为 sc_K49vrh。(位置:`https://docs.qq.com/smartsheet/DUXJLSnZoTVFhVUVs?tab=sc_K49vrh`) +- 该公开链接权限明确关闭复制和普通导出;canRead 为 true,canCopy/canExport/canExportOnline 为 false。(位置:`腾讯文档 basicClientVars.authInfo.attribute`) +- 腾讯智能表格当前使用 newOpenSvc 数据链路;公开 opendoc 只返回权限、表 ID 与临时会话信息,自动化 Chromium 被导向安全拦截页,未获得完整行数据。(位置:`腾讯文档公开页面及 /dop-api/opendoc 只读探测`) +- 用户确认招聘信息不放在 resources 下,需在 content/docs 中新建与现有一级栏目同级的独立栏目。(位置:`用户确认 2026-08-03`) +- 用户无法联系腾讯文档所有者,当前无法获得导出、官方 API 授权或 CSV/JSON 镜像等稳定入口。(位置:`用户确认 2026-08-03`) +- “招聘信息”一级栏目下分为“每日更新”和“秋招提前批”两个独立子部分;两者字段不同,各自独立存储和展示,不强制合并成统一字段表。(位置:`用户确认 2026-08-04`) +- 最新 main 已新增“求职就业”一级栏目;用户确认取消单独的“招聘信息”一级栏目,将“每日更新”和“秋招提前批”直接放在“求职就业”下并与“内推”并列。(位置:`用户确认 2026-08-09`) +- 一个源记录或单元格包含多个招聘链接时全部保留,并按各自源字段标注。(位置:`用户确认 2026-08-04`) +- 源记录修改时按记录 ID 更新;源记录删除时保留历史并标记源表已移除。(位置:`用户确认 2026-08-04`) +- 保留腾讯文档中的原始链接并单独检测可访问性,不使用跳转后的地址改写原链接。(位置:`用户确认 2026-08-04`) +- 首次上线前执行两个数据集的全量人工对账并建立记录 ID、数量和链接哈希基线。(位置:`用户确认 2026-08-04`) +- 同步失败或记录数异常下降时创建 GitHub Issue;在当前 feature/qiuzhao 分支实施,并每 3 小时运行一次。(位置:`用户确认 2026-08-04;分支更新 2026-08-07`) +- 首版只使用 GitHub Actions;用户电脑无需开机。公开数据链路探针不满足完整性门槛时停止发布、保留旧数据并创建 GitHub Issue,再单独决定其他运行方式。(位置:`用户确认 2026-08-04`) +- 2026-08-04 使用全新无登录态 Chrome 只读探测目标链接时,页面标题可读取,但正文明确显示“此文档已设置权限,请登录后使用”,未发起任何包含表格记录的数据请求。(位置:`Chrome DevTools Protocol 公开页面探针 2026-08-04`) +- canRead=true 只表示文档权限元数据允许读取,实际记录仍受腾讯账号登录门槛保护;纯匿名 GitHub Actions 当前无法取得“每日更新”和“秋招提前批”数据。(位置:`公开页面 basicClientVars 与实际页面探针联合验证`) +- 用户已使用专用腾讯账号登录腾讯文档,并确认该账号打开原链接后可以看到“每日更新”和“秋招提前批”的实际行数据与链接。(位置:`用户确认 2026-08-06`) +- 用户最终确认生成方案,并再次要求保持最小改动,同时为未来增加同类招聘数据集保留清晰扩展点。(位置:`用户确认 2026-08-06`) +- 本需求已明确在当前 feature/qiuzhao 分支实施。(位置:`用户确认 2026-08-07`) + +## 最终方案 + +### 采用专用账号会话的双数据集招聘同步 +在 main 现有的 content/docs/jobs“求职就业”一级栏目下新增两个独立子页面,并在栏目首页增加入口;每个页面以一条企业一行的宽表展示,每 15 条分页并由独立容器提供横向滚动,不展示腾讯源表入口;使用专用账号会话驱动每 3 小时一次的 GitHub Actions,同步两个独立数据集,并以失败关闭、历史保留和哈希对账防止遗漏、重复与链接错写。 + +选择理由:目标文档的实际记录要求登录,匿名探针只能读取标题和权限元数据。专用账号已经确认可看到两个数据集;GitHub Actions 可复用仓库已有的默认分支检出、Hugo 全站构建、白名单提交和 Pages 触发模式,同时避免用户电脑持续开机。两个源数据集字段不同,独立快照和独立页面可以保留源字段含义并减少页面框架改动。 + +### 以 DatasetSpec 保留轻量扩展点 +扩展边界保持在单脚本的声明式数据集清单,当前配置视图、目标文件、隐藏字段和显示标签;未来新增同类数据集时增加一项配置和对应内容文件。 + +选择理由:该边界消除两个数据集之间的流程复制,同时避免引入插件系统、通用 ETL 框架、数据库或额外服务,符合仓库规模和最小改动要求。 + +## 接口与数据调整 + +- 新增 scripts/sync_qq_jobs.py 命令行入口,支持 source URL、storage state、数据目录、内容目录、只读探针、链接检查和显式确认源删除。 +- 新增 GitHub Actions Secret QQ_DOCS_STORAGE_STATE_B64,内容为专用腾讯账号 Playwright storage state 的 Base64。 +- 新增 qq-jobs-sync workflow_dispatch 手动入口和每 3 小时 schedule。 +- 新增 data/jobs/daily-updates.json,独立保存“每日更新”的源视图、字段 schema、同步摘要、记录和原始链接。 +- 新增 data/jobs/early-recruitment.json,独立保存“秋招提前批”的源视图、字段 schema、同步摘要、记录和原始链接。 +- 复用 content/docs/jobs 下的“求职就业”栏目索引并新增两个生成页面。 + +## 联调边界 + +- 不修改 themes、layouts、assets、SCSS、现有栏目内容和现有每日一问同步职责。 +- 不新增后端服务、数据库、管理后台或本机常驻定时任务。 +- 不提交、打印或上传腾讯账号密码、Cookie、Token 和 storage state。 +- 结构化数据无法提供稳定记录 ID、字段 ID、完整分页结束条件和可核对总量时,停止发布并保留上次成功内容。 +- 不实现插件系统、通用同步框架或动态配置中心。 + +## 风险与注意事项 + +- 腾讯文档登录会话会过期;workflow 会将登录页识别为会话失效并告警,需要人工刷新 Secret。 +- 腾讯可能拦截 GitHub 云端 IP 或修改 newOpenSvc 协议;同步将失败关闭并保留旧数据,无法在无稳定官方接口时承诺永久自动运行。 +- storage state 属于敏感凭据;专用账号应只用于该公开文档,Secret 不进入 PR、日志、Artifact 或仓库文件。 +- 源端在两次采集之间发生修改会造成结果不一致;workflow 重试后仍不一致则延后到下一轮。 +- HTML 会按标准规范化 URL 属性中的控制回车和首尾空白;JSON 快照与生成 Markdown 逐字保留源值,并在写入前回读校验全部链接。当前 1726 条链接中有 4 条源值包含这类空白,其余链接在 Hugo 最终 HTML 中逐字符一致。 +- 首次全量对账通过前只允许探针和测试,不发布未经核验的数据。 +- 腾讯协议差异应封装在 QQDocsSource 内,避免 DatasetSpec 承担协议解析逻辑。 diff --git a/scripts/sync_qq_jobs.py b/scripts/sync_qq_jobs.py new file mode 100644 index 0000000..1f7fdd2 --- /dev/null +++ b/scripts/sync_qq_jobs.py @@ -0,0 +1,1243 @@ +#!/usr/bin/env python3 + +import base64 +import argparse +import asyncio +import hashlib +import html +import http.client +import json +import os +import socket +import ssl +import sys +import tempfile +import time +import zlib +from concurrent.futures import ThreadPoolExecutor +from copy import deepcopy +from dataclasses import dataclass +from datetime import datetime, timedelta, timezone +from html.parser import HTMLParser +from pathlib import Path +from urllib.error import HTTPError, URLError +from urllib.parse import parse_qsl, urlencode, urlsplit, urlunsplit +from urllib.request import HTTPRedirectHandler, Request, build_opener + + +class IntegrityError(ValueError): + """Raised when a source snapshot cannot be proven complete.""" + + +class SourceDeletionError(IntegrityError): + """Raised when records disappear without explicit operator approval.""" + + +@dataclass(frozen=True) +class DatasetSpec: + view_name: str + data_path: Path + content_path: Path + weight: int + hidden_fields: tuple = () + slug: str = "" + shortlink: str = "" + field_labels: tuple = () + + +FIELD_TYPES = { + 1: "text", + 4: "date", + 5: "checkbox", + 8: "url", + 9: "multi_select", + 23: "user", +} +SHANGHAI_TZ = timezone(timedelta(hours=8)) +ROOT = Path(__file__).resolve().parents[1] +DOCUMENT_ID = "DUXJLSnZoTVFhVUVs" +DEFAULT_SOURCE_URL = f"https://docs.qq.com/smartsheet/{DOCUMENT_ID}?tab=sc_K49vrh" +DATASETS = ( + DatasetSpec( + "每日更新", + ROOT / "data" / "jobs" / "daily-updates.json", + ROOT / "content" / "docs" / "jobs" / "每日更新.md", + 1, + slug="daily-updates", + shortlink="553e", + ), + DatasetSpec( + "秋招提前批(内推)", + ROOT / "data" / "jobs" / "early-recruitment.json", + ROOT / "content" / "docs" / "jobs" / "秋招提前批.md", + 2, + hidden_fields=("内推码", "对接人"), + slug="early-recruitment", + shortlink="9qrj", + field_labels=(("内推链接", "投递链接"),), + ), +) + + +def validate_snapshot(snapshot): + metadata = snapshot.get("snapshot", {}) + if metadata.get("pagination_complete") is not True: + raise IntegrityError("源数据分页未完整结束") + record_count = len(snapshot.get("records", [])) + if metadata.get("source_total") != record_count or metadata.get("fetched_count") != record_count: + raise IntegrityError("源端总量、抓取记录数与唯一记录数不一致") + record_ids = [record.get("record_id") for record in snapshot["records"]] + if any(not record_id for record_id in record_ids) or len(record_ids) != len(set(record_ids)): + raise IntegrityError("record_id 缺失或重复") + schema_ids = [field.get("field_id") for field in snapshot.get("schema", [])] + if any(not field_id for field_id in schema_ids) or len(schema_ids) != len(set(schema_ids)): + raise IntegrityError("schema field_id 缺失或重复") + known_fields = set(schema_ids) + for record in snapshot["records"]: + record_field_ids = [field.get("field_id") for field in record.get("fields", [])] + if ( + any(field_id not in known_fields for field_id in record_field_ids) + or len(record_field_ids) != len(set(record_field_ids)) + ): + raise IntegrityError(f"记录 {record['record_id']} 的 field_id 缺失、重复或不在视图 schema 中") + + +def _scan_fingerprint(snapshot): + records = [] + for record in snapshot.get("records", []): + fields = [] + for field in record.get("fields", []): + links = field.get("links", []) + fields.append( + { + "field_id": field.get("field_id"), + "value": field.get("value"), + "raw_value": field.get("raw_value"), + "links": links, + } + ) + records.append( + { + "record_id": record.get("record_id"), + "fields": sorted(fields, key=lambda field: field.get("field_id", "")), + } + ) + metadata = snapshot.get("snapshot", {}) + canonical = { + "source": snapshot.get("source", {}), + "schema": sorted( + snapshot.get("schema", []), + key=lambda field: (field.get("order", 0), field.get("field_id", "")), + ), + "snapshot": { + "source_total": metadata.get("source_total"), + "fetched_count": metadata.get("fetched_count"), + "pagination_complete": metadata.get("pagination_complete"), + }, + "records": records, + } + encoded = json.dumps(canonical, ensure_ascii=False, sort_keys=True, separators=(",", ":")) + return hashlib.sha256(encoded.encode("utf-8")).hexdigest() + + +def assert_matching_scans(first, second): + validate_snapshot(first) + validate_snapshot(second) + if _scan_fingerprint(first) != _scan_fingerprint(second): + raise IntegrityError("两次全量读取结果不一致") + + +def _decode_sheet_operations(payload): + try: + attributed = payload["data"]["initialAttributedText"]["text"] + if len(attributed) != 1: + raise ValueError + encoded = attributed[0]["smartsheet"] + compressed = base64.b64decode(encoded + "=" * (-len(encoded) % 4)) + decoded = json.loads(zlib.decompress(compressed).decode("utf-8")) + except (KeyError, TypeError, ValueError, UnicodeError, zlib.error, json.JSONDecodeError) as error: + raise IntegrityError("腾讯文档 smartsheet 响应编码无法解析") from error + if not isinstance(decoded, list) or len(decoded) != 1 or not isinstance(decoded[0], list): + raise IntegrityError("腾讯文档 smartsheet 操作结构发生变化") + return attributed[0], decoded[0] + + +def _workbook_from_payload(payload): + try: + attributed = payload["data"]["initialAttributedText"]["text"] + if len(attributed) != 1 or "workbook" not in attributed[0]: + return None + workbook = json.loads(attributed[0]["workbook"]) + except (KeyError, TypeError, ValueError, json.JSONDecodeError) as error: + raise IntegrityError("workbook 元数据无法解析") from error + if not isinstance(workbook, list): + raise IntegrityError("workbook 视图清单结构无效") + return workbook + + +def _extract_structured_links(value): + links = [] + + def visit(item): + if isinstance(item, dict): + if item.get("k1") == "url" and isinstance(item.get("k3"), str): + links.append({"text": str(item.get("k2") or item["k3"]), "url": item["k3"]}) + for child in item.values(): + visit(child) + elif isinstance(item, list): + for child in item: + visit(child) + + visit(value) + unique = [] + seen = set() + for link in links: + marker = (link["text"], link["url"]) + if marker not in seen: + seen.add(marker) + unique.append(link) + return unique + + +def _cell_value(cell, field_type, option_names): + raw_value = None + if field_type == 1: + value = "".join( + str(segment.get("k2", "")) + for segment in cell.get("k1", []) + if isinstance(segment, dict) + ) + elif field_type == 4: + raw_value = cell.get("k4", "") + try: + value = datetime.fromtimestamp(int(raw_value) / 1000, tz=SHANGHAI_TZ).strftime("%Y-%m-%d") + except (TypeError, ValueError, OSError, OverflowError): + value = str(raw_value) + elif field_type == 8: + value = "\n".join( + str(item.get("k2") or item.get("k3") or "") + for item in cell.get("k8", []) + if isinstance(item, dict) + ) + elif field_type == 9: + raw_value = [str(option_id) for option_id in cell.get("k9", [])] + value = [option_names.get(option_id, option_id) for option_id in raw_value] + elif field_type == 23: + value = [ + str(user.get("k2") or user.get("k1") or "") + for user in cell.get("k23", []) + if isinstance(user, dict) + ] + else: + value = { + key: child for key, child in cell.items() if key not in {"k30", "k31", "k32"} + } + return value, raw_value + + +def parse_sheet_pages(view_name, payloads, source_url, document_id): + if not payloads: + raise IntegrityError(f"视图 {view_name} 没有返回结构化分页数据") + + sheet_id = None + view_id = None + revision = None + total = None + max_columns = None + ranges = [] + workbook = None + field_definitions = None + field_order = None + row_order = None + raw_records = {} + + for payload in payloads: + if payload.get("retcode") != 0: + raise IntegrityError("腾讯文档 get/sheet 返回非零 retcode") + data = payload.get("data", {}) + values = (data.get("sheetId"), data.get("viewID"), data.get("rev"), data.get("maxrow"), data.get("maxcol")) + if sheet_id is None: + sheet_id, view_id, revision, total, max_columns = values + elif values != (sheet_id, view_id, revision, total, max_columns): + raise IntegrityError("分页之间的 sheet/view/revision/总量不一致") + start = data.get("startrow") + end = data.get("endrow") + if not isinstance(start, int) or not isinstance(end, int): + raise IntegrityError("分页缺少稳定的起止行号") + ranges.append((start, end)) + + attributed, operations = _decode_sheet_operations(payload) + if "workbook" in attributed: + try: + candidate = json.loads(attributed["workbook"]) + except (TypeError, json.JSONDecodeError) as error: + raise IntegrityError("workbook 元数据无法解析") from error + if workbook is None: + workbook = candidate + elif workbook != candidate: + raise IntegrityError("分页之间的 workbook 元数据不一致") + + for operation in operations: + if operation.get("c", {}).get("k1") != sheet_id: + raise IntegrityError("smartsheet 操作绑定到了错误的 sheetId") + if operation.get("t") == 3005: + model = operation.get("c", {}).get("k3", {}) + definitions = model.get("k3") + views = model.get("k4", []) + if not isinstance(definitions, dict) or not views: + raise IntegrityError("缺少字段 schema 或行顺序元数据") + candidate_view = views[0].get("k1", {}) + candidate_rows = candidate_view.get("k1") + candidate_fields = candidate_view.get("k2") + if not isinstance(candidate_rows, list) or not isinstance(candidate_fields, list): + raise IntegrityError("视图缺少稳定的记录 ID 或字段 ID 顺序") + if field_definitions is not None and ( + field_definitions != definitions + or field_order != candidate_fields + or row_order != candidate_rows + ): + raise IntegrityError("分页之间的 schema 或记录顺序不一致") + field_definitions = definitions + field_order = candidate_fields + row_order = candidate_rows + elif operation.get("t") == 3028: + records = operation.get("c", {}).get("k2", {}).get("k1") + if not isinstance(records, dict): + raise IntegrityError("记录操作缺少 record_id 映射") + duplicates = set(raw_records).intersection(records) + if duplicates: + raise IntegrityError(f"分页返回重复 record_id:{sorted(duplicates)[0]}") + raw_records.update(records) + + if not sheet_id or not view_id or not isinstance(total, int) or total < 0: + raise IntegrityError("sheetId、viewID 或源端总量缺失") + sorted_ranges = sorted(ranges) + expected_start = 0 + for start, end in sorted_ranges: + if start != expected_start or end < start: + raise IntegrityError("分页范围存在缺口、重叠或倒序") + expected_start = end + 1 + if expected_start != total: + raise IntegrityError("分页范围未覆盖源端总量") + if not isinstance(workbook, list): + raise IntegrityError("缺少 workbook 视图清单") + matches = [item for item in workbook if item.get("name") == view_name] + if len(matches) != 1 or matches[0].get("id") != sheet_id: + raise IntegrityError(f"workbook 中无法唯一定位视图:{view_name}") + if field_definitions is None or field_order is None or row_order is None: + raise IntegrityError("完整分页中缺少 schema 元数据") + if len(row_order) != total or set(row_order) != set(raw_records): + raise IntegrityError("记录 ID 清单、分页记录和源端总量不一致") + + schema = [] + option_maps = {} + for order, field_id in enumerate(field_order): + definition = field_definitions.get(field_id) + if not isinstance(definition, dict): + raise IntegrityError(f"字段 ID 不在 schema 中:{field_id}") + type_code = definition.get("k31") + options = definition.get("k9", {}).get("k3", []) if type_code == 9 else [] + option_map = { + str(option.get("k1")): str(option.get("k2", option.get("k1"))) + for option in options + if isinstance(option, dict) and option.get("k1") is not None + } + option_maps[field_id] = option_map + schema.append( + { + "field_id": field_id, + "name": str(definition.get("k30") or field_id), + "type": FIELD_TYPES.get(type_code, f"type_{type_code}"), + "type_code": type_code, + "order": order, + "options": [{"id": key, "name": value} for key, value in option_map.items()], + } + ) + + records = [] + for record_id in row_order: + cells = raw_records[record_id].get("k1", {}) + if not isinstance(cells, dict): + raise IntegrityError(f"记录 {record_id} 缺少字段映射") + fields = [] + for field_id in field_order: + cell = cells.get(field_id, {}) + if not isinstance(cell, dict): + raise IntegrityError(f"记录 {record_id} 的字段 {field_id} 结构无效") + type_code = field_definitions[field_id].get("k31") + value, raw_value = _cell_value(cell, type_code, option_maps[field_id]) + field = { + "field_id": field_id, + "value": value, + "links": _extract_structured_links(cell), + } + if raw_value is not None: + field["raw_value"] = raw_value + fields.append(field) + records.append({"record_id": record_id, "fields": fields}) + + snapshot = { + "source": { + "document_id": document_id, + "source_url": source_url, + "sheet_id": sheet_id, + "view_id": view_id, + "view_name": view_name, + "revision": revision, + }, + "schema": schema, + "snapshot": { + "source_total": total, + "fetched_count": len(records), + "pagination_complete": True, + "page_ranges": [[start, end] for start, end in sorted_ranges], + "max_columns": max_columns, + }, + "records": records, + } + validate_snapshot(snapshot) + return snapshot + + +def _url_with_tab(source_url, tab): + parsed = urlsplit(source_url) + query = dict(parse_qsl(parsed.query, keep_blank_values=True)) + query["tab"] = tab + return urlunsplit((parsed.scheme, parsed.netloc, parsed.path, urlencode(query), parsed.fragment)) + + +def _deduplicate_pages(payloads, sheet_id): + pages = {} + for payload in payloads: + data = payload.get("data", {}) + if data.get("sheetId") != sheet_id: + continue + key = (data.get("startrow"), data.get("endrow"), data.get("rev")) + encoded = data.get("initialAttributedText", {}).get("text", [{}])[0].get("smartsheet") + if key in pages and pages[key].get("data", {}).get("initialAttributedText") != data.get("initialAttributedText"): + raise IntegrityError("同一分页范围返回了不同响应") + if encoded: + pages[key] = payload + return list(pages.values()) + + +def _ranges_complete(payloads, sheet_id): + pages = _deduplicate_pages(payloads, sheet_id) + if not pages: + return False + totals = {payload.get("data", {}).get("maxrow") for payload in pages} + if len(totals) != 1 or not isinstance(next(iter(totals)), int): + return False + total = next(iter(totals)) + ranges = sorted( + (payload["data"].get("startrow"), payload["data"].get("endrow")) + for payload in pages + ) + expected = 0 + for start, end in ranges: + if not isinstance(start, int) or not isinstance(end, int) or start != expected or end < start: + return False + expected = end + 1 + return expected == total + + +class QQDocsSource: + def __init__( + self, + source_url, + storage_state, + *, + browser_channel=None, + headless=True, + timeout_seconds=90, + ): + self.source_url = source_url + self.storage_state = Path(storage_state) + self.browser_channel = browser_channel + self.headless = headless + self.timeout_seconds = timeout_seconds + + async def collect(self, specs): + if not self.storage_state.is_file(): + raise IntegrityError("storage state 文件不存在") + try: + from playwright.async_api import async_playwright + except ImportError as error: + raise RuntimeError("缺少 Playwright,请先安装 playwright 并安装 Chromium") from error + + captures = [] + response_tasks = set() + + async def capture(response): + if urlsplit(response.url).path != "/dop-api/get/sheet" or response.status != 200: + return + try: + payload = await response.json() + except Exception: + return + if isinstance(payload, dict): + captures.append(payload) + + def schedule_capture(response): + task = asyncio.create_task(capture(response)) + response_tasks.add(task) + task.add_done_callback(response_tasks.discard) + + async with async_playwright() as playwright: + launch_options = {"headless": self.headless} + if self.browser_channel: + launch_options["channel"] = self.browser_channel + browser = await playwright.chromium.launch(**launch_options) + try: + context = await browser.new_context(storage_state=str(self.storage_state)) + page = await context.new_page() + page.on("response", schedule_capture) + page.set_default_timeout(self.timeout_seconds * 1000) + await page.goto( + self.source_url, + wait_until="domcontentloaded", + timeout=self.timeout_seconds * 1000, + ) + workbook = await self._wait_for_workbook(page, captures) + target_sheets = {} + for spec in specs: + matches = [item for item in workbook if item.get("name") == spec.view_name] + if len(matches) != 1 or not matches[0].get("id"): + raise IntegrityError(f"workbook 中无法唯一定位视图:{spec.view_name}") + target_sheets[spec.view_name] = matches[0]["id"] + + grace_deadline = time.monotonic() + min(30, self.timeout_seconds / 2) + while time.monotonic() < grace_deadline: + if all(_ranges_complete(captures, sheet_id) for sheet_id in target_sheets.values()): + break + await page.wait_for_timeout(250) + + for sheet_id in target_sheets.values(): + if not _ranges_complete(captures, sheet_id): + await page.goto( + _url_with_tab(self.source_url, sheet_id), + wait_until="domcontentloaded", + timeout=self.timeout_seconds * 1000, + ) + await self._wait_for_pages(page, captures, sheet_id, encourage_loading=True) + + if response_tasks: + await asyncio.gather(*tuple(response_tasks), return_exceptions=True) + snapshots = {} + for spec in specs: + sheet_id = target_sheets[spec.view_name] + pages = _deduplicate_pages(captures, sheet_id) + snapshots[spec.view_name] = parse_sheet_pages( + spec.view_name, + pages, + source_url=_url_with_tab(self.source_url, sheet_id), + document_id=DOCUMENT_ID, + ) + return snapshots + finally: + await browser.close() + + async def _wait_for_workbook(self, page, captures): + deadline = time.monotonic() + self.timeout_seconds + while time.monotonic() < deadline: + for payload in captures: + workbook = _workbook_from_payload(payload) + if workbook is not None: + return workbook + await page.wait_for_timeout(250) + title = await page.title() + if "登录" in title or "安全" in title: + raise IntegrityError("腾讯文档会话失效或触发安全拦截") + raise IntegrityError("未收到腾讯文档 workbook 结构化响应") + + async def _wait_for_pages(self, page, captures, sheet_id, encourage_loading=False): + deadline = time.monotonic() + self.timeout_seconds + next_scroll = 0 + while time.monotonic() < deadline: + if _ranges_complete(captures, sheet_id): + return + if encourage_loading and time.monotonic() >= next_scroll: + await page.mouse.wheel(0, 100000) + await page.keyboard.press("End") + await page.evaluate( + """() => { + for (const element of document.querySelectorAll('*')) { + if (element.scrollHeight > element.clientHeight) { + element.scrollTop = element.scrollHeight; + } + } + }""" + ) + next_scroll = time.monotonic() + 2 + await page.wait_for_timeout(250) + raise IntegrityError(f"sheet {sheet_id} 的分页未完整返回") + + +def merge_history(previous, current, now, accept_source_deletions=False): + validate_snapshot(current) + previous_by_id = { + record["record_id"]: record for record in previous.get("records", []) + } + current_ids = {record["record_id"] for record in current["records"]} + missing_ids = sorted( + record["record_id"] + for record in previous.get("records", []) + if record.get("status", "active") == "active" and record["record_id"] not in current_ids + ) + removed_history = [ + deepcopy(record) + for record in previous.get("records", []) + if record.get("status") == "source_removed" and record["record_id"] not in current_ids + ] + if missing_ids and not accept_source_deletions: + raise SourceDeletionError(f"源记录消失,需人工确认:{', '.join(missing_ids)}") + merged = deepcopy(current) + for record in merged["records"]: + previous_record = previous_by_id.get(record["record_id"], {}) + record["status"] = "active" + record["first_seen_at"] = previous_record.get("first_seen_at", now) + record["last_seen_at"] = now + record["removed_at"] = None + merged["records"].extend(removed_history) + if accept_source_deletions: + for record_id in missing_ids: + removed = deepcopy(previous_by_id[record_id]) + removed["status"] = "source_removed" + removed["removed_at"] = now + merged["records"].append(removed) + return merged + + +def _plain_text(value): + if value is None: + return "" + if isinstance(value, str): + return value + if isinstance(value, (int, float, bool)): + return str(value) + if isinstance(value, list): + if all(isinstance(item, (str, int, float, bool)) for item in value): + return "、".join(str(item) for item in value) + if not value: + return "" + if isinstance(value, dict) and not value: + return "" + return json.dumps(value, ensure_ascii=False, sort_keys=True, separators=(",", ":")) + + +def _safe_html_text(value): + return ( + html.escape(str(value), quote=False) + .replace("{", "{") + .replace("}", "}") + .replace("\r\n", "
") + .replace("\r", "
") + .replace("\n", "
") + ) + + +def _anchor(url, text): + escaped_url = ( + html.escape(url, quote=True) + .replace("\t", " ") + .replace("\n", " ") + .replace("\r", " ") + ) + return f'{_safe_html_text(text)}' + + +def _render_table_cell(field): + links = field.get("links", []) + if links: + return "
".join( + _anchor(link["url"], str(link.get("text") or link["url"])) + for link in links + ) + return _safe_html_text(_plain_text(field.get("value"))) + + +def _field_is_hidden(name, hidden_fields): + return any(name == hidden or name.startswith(f"{hidden}(") for hidden in hidden_fields) + + +def _visible_schema(snapshot, hidden_fields): + return [ + field + for field in sorted( + snapshot.get("schema", []), + key=lambda item: (item.get("order", 0), item.get("field_id", "")), + ) + if not _field_is_hidden(field.get("name", ""), hidden_fields) + ] + + +def _records_for_display(snapshot, schema): + records = snapshot.get("records", []) + date_field_id = next( + (field.get("field_id") for field in schema if field.get("name") == "更新日期"), + None, + ) + if not date_field_id: + return records + + def date_key(record): + value = next( + ( + field.get("value") + for field in record.get("fields", []) + if field.get("field_id") == date_field_id + ), + "", + ) + date_value = _plain_text(value) + return bool(date_value), date_value + + return sorted(records, key=date_key, reverse=True) + + +def render_markdown(title, weight, snapshot, hidden_fields=(), field_labels=(), slug="", shortlink=""): + metadata = snapshot.get("snapshot", {}) + schema = _visible_schema(snapshot, hidden_fields) + display_labels = dict(field_labels) + lines = [ + "---", + f'title: "{title}"', + f"weight: {weight}", + "type: docs", + "---", + "", + f"# {title}", + "", + ] + if slug: + lines.insert(2, f'slug: "{slug}"') + if shortlink: + type_index = lines.index("type: docs") + lines[type_index:type_index] = ["aliases:", f' - "/s/{shortlink}/"', f'shortlink: "{shortlink}"'] + if metadata.get("synced_at"): + lines.append(f"最后成功同步:{html.escape(str(metadata['synced_at']), quote=False)}") + lines.append("") + + records = _records_for_display(snapshot, schema) + if not records: + lines.extend(["当前暂无记录。", ""]) + return "\n".join(lines) + + page_size = 15 + page_count = (len(records) + page_size - 1) // page_size + lines.extend([ + f'
', + f'
', + '', "", ""]) + for definition in schema: + name = definition.get("name") or definition.get("field_id") or "未命名字段" + name = display_labels.get(name, name) + lines.append(f'') + lines.extend(["", "", ""]) + for record_index, record in enumerate(records): + page_number = record_index // page_size + 1 + hidden = " hidden" if page_number > 1 else "" + fields = {field.get("field_id"): field for field in record.get("fields", [])} + lines.append(f'') + for column_index, definition in enumerate(schema): + field = fields.get(definition.get("field_id"), {}) + value = _render_table_cell(field) + if column_index == 0 and record.get("status") == "source_removed": + value = f"{value}
源表已移除" + lines.append(f"") + lines.extend([""]) + lines.extend( + [ + "", + "
{_safe_html_text(name)}
{value}
", + "
", + ] + ) + if page_count > 1: + lines.extend( + [ + '", + ] + ) + lines.append("
") + if page_count > 1: + lines.extend( + [ + "", + ] + ) + lines.append("") + return "\n".join(lines) + + +class _RenderedLinkCollector(HTMLParser): + def __init__(self): + super().__init__() + self.links = [] + + def handle_starttag(self, tag, attrs): + if tag == "a" and "href" in dict(attrs): + self.links.append(dict(attrs)["href"]) + + +def _assert_rendered_links(snapshot, markdown, hidden_fields=()): + expected = [] + schema = _visible_schema(snapshot, hidden_fields) + for record in _records_for_display(snapshot, schema): + fields = {field.get("field_id"): field for field in record.get("fields", [])} + for definition in schema: + expected.extend( + link["url"] + for link in fields.get(definition.get("field_id"), {}).get("links", []) + ) + collector = _RenderedLinkCollector() + collector.feed(markdown) + if collector.links != expected: + raise IntegrityError("生成页面的链接与快照原始链接不一致") + + +def _sha256_lines(values): + return hashlib.sha256("\n".join(values).encode("utf-8")).hexdigest() + + +def _previous_links_by_key(previous): + return { + link["key"]: link + for record in previous.get("records", []) + for field in record.get("fields", []) + for link in field.get("links", []) + if isinstance(link.get("key"), str) + } + + +class _HeadRedirectHandler(HTTPRedirectHandler): + def redirect_request(self, request, file_pointer, code, message, headers, new_url): + redirected = super().redirect_request( + request, + file_pointer, + code, + message, + headers, + new_url, + ) + if redirected is not None and request.get_method() == "HEAD": + redirected.method = "HEAD" + return redirected + + +def _enrich_snapshot(snapshot, now, scan_hash, previous=None): + enriched = deepcopy(snapshot) + previous_links = _previous_links_by_key(previous or {}) + link_bindings = [] + active_record_ids = [] + view_id = enriched["source"]["view_id"] + for record in enriched["records"]: + if record.get("status") != "source_removed": + active_record_ids.append(record["record_id"]) + for field in record.get("fields", []): + unique_links = [] + seen_keys = set() + for link in field.get("links", []): + url = link.get("url") + if not isinstance(url, str) or not url.lower().startswith(("http://", "https://")): + raise IntegrityError("招聘链接必须是完整的 HTTP 或 HTTPS URL") + binding = [view_id, record["record_id"], field["field_id"], url] + key = hashlib.sha256( + json.dumps(binding, ensure_ascii=False, separators=(",", ":")).encode("utf-8") + ).hexdigest() + if key in seen_keys: + continue + seen_keys.add(key) + stored_link = deepcopy(link) + stored_link["key"] = key + previous_link = previous_links.get(key, {}) + if ( + previous_link.get("url") == stored_link.get("url") + and previous_link.get("text") == stored_link.get("text") + and isinstance(previous_link.get("availability"), dict) + ): + stored_link["availability"] = deepcopy(previous_link["availability"]) + unique_links.append(stored_link) + if record.get("status") != "source_removed": + link_bindings.append(json.dumps(binding, ensure_ascii=False, separators=(",", ":"))) + field["links"] = unique_links + metadata = enriched.setdefault("snapshot", {}) + metadata.update( + { + "synced_at": now, + "active_count": len(active_record_ids), + "historical_count": len(enriched["records"]), + "record_id_hash": _sha256_lines(sorted(active_record_ids)), + "link_hash": _sha256_lines(sorted(link_bindings)), + "scan_hash": scan_hash, + } + ) + return enriched + + +def _check_one_link(url, now, timeout_seconds): + headers = { + "Accept": "*/*", + "User-Agent": "Mozilla/5.0 (compatible; GoClubLinkChecker/1.0)", + } + opener = build_opener(_HeadRedirectHandler()) + try: + try: + response = opener.open( + Request(url, headers=headers, method="HEAD"), + timeout=timeout_seconds, + ) + except HTTPError as error: + if error.code not in (405, 501): + raise + get_headers = {**headers, "Range": "bytes=0-0"} + response = opener.open( + Request(url, headers=get_headers, method="GET"), + timeout=timeout_seconds, + ) + with response: + status_code = response.getcode() + return { + "checked_at": now, + "result": "reachable", + "status_code": status_code, + "error_category": None, + } + except HTTPError as error: + return { + "checked_at": now, + "result": "unreachable", + "status_code": error.code, + "error_category": "http_error", + } + except (TimeoutError, socket.timeout): + category = "timeout" + except URLError as error: + reason = error.reason + if isinstance(reason, (TimeoutError, socket.timeout)): + category = "timeout" + elif isinstance(reason, ssl.SSLError): + category = "tls_error" + elif isinstance(reason, socket.gaierror): + category = "dns_error" + else: + category = "connection_error" + except (http.client.HTTPException, OSError, ValueError): + category = "request_error" + return { + "checked_at": now, + "result": "unknown", + "status_code": None, + "error_category": category, + } + + +def check_link_accessibility(snapshot, now, max_workers=12, timeout_seconds=5): + pending = [ + link + for record in snapshot.get("records", []) + if record.get("status", "active") == "active" + for field in record.get("fields", []) + for link in field.get("links", []) + if not isinstance(link.get("availability"), dict) + ] + if not pending: + return 0 + worker_count = max(1, min(max_workers, len(pending))) + with ThreadPoolExecutor(max_workers=worker_count) as executor: + results = executor.map( + lambda link: _check_one_link(link["url"], now, timeout_seconds), + pending, + ) + for link, availability in zip(pending, results): + link["availability"] = availability + return len(pending) + + +def _load_previous(path): + if not path.exists(): + return {"records": []} + try: + return json.loads(path.read_text(encoding="utf-8")) + except (OSError, UnicodeError, json.JSONDecodeError) as error: + raise IntegrityError(f"现有快照无法读取:{path}") from error + + +def _stage_bytes(path, content): + path.parent.mkdir(parents=True, exist_ok=True) + descriptor, name = tempfile.mkstemp(prefix=f".{path.name}.", suffix=".tmp", dir=path.parent) + temporary = Path(name) + try: + with os.fdopen(descriptor, "wb") as output: + output.write(content) + output.flush() + os.fsync(output.fileno()) + except BaseException: + temporary.unlink(missing_ok=True) + raise + return temporary + + +def _replace_outputs(outputs): + staged = [] + originals = {} + replaced = [] + try: + for path, content in outputs: + originals[path] = path.read_bytes() if path.exists() else None + staged.append((path, _stage_bytes(path, content))) + for path, temporary in staged: + os.replace(temporary, path) + replaced.append(path) + except BaseException: + for path in reversed(replaced): + original = originals[path] + if original is None: + path.unlink(missing_ok=True) + else: + rollback = _stage_bytes(path, original) + os.replace(rollback, path) + raise + finally: + for _, temporary in staged: + temporary.unlink(missing_ok=True) + + +def _prepare_dataset( + spec, + first_scan, + second_scan, + now, + accept_source_deletions=False, + check_links=False, +): + assert_matching_scans(first_scan, second_scan) + if first_scan.get("source", {}).get("view_name") != spec.view_name: + raise IntegrityError(f"缺少目标视图:{spec.view_name}") + scan_hash = _scan_fingerprint(first_scan) + previous = _load_previous(spec.data_path) + if previous.get("snapshot", {}).get("scan_hash") == scan_hash: + enriched = deepcopy(previous) + else: + merged = merge_history( + previous, + first_scan, + now=now, + accept_source_deletions=accept_source_deletions, + ) + enriched = _enrich_snapshot(merged, now, scan_hash, previous=previous) + if check_links: + check_link_accessibility(enriched, now) + data_bytes = ( + json.dumps(enriched, ensure_ascii=False, indent=2, sort_keys=True) + "\n" + ).encode("utf-8") + markdown = render_markdown( + spec.content_path.stem, + spec.weight, + enriched, + hidden_fields=spec.hidden_fields, + field_labels=spec.field_labels, + slug=spec.slug, + shortlink=spec.shortlink, + ) + _assert_rendered_links(enriched, markdown, hidden_fields=spec.hidden_fields) + content_bytes = markdown.encode("utf-8") + outputs = [(spec.data_path, data_bytes), (spec.content_path, content_bytes)] + changed_outputs = [ + (path, content) + for path, content in outputs + if not path.exists() or path.read_bytes() != content + ] + return changed_outputs, enriched + + +def sync_dataset( + spec, + first_scan, + second_scan, + now, + accept_source_deletions=False, + check_links=False, +): + outputs, _ = _prepare_dataset( + spec, + first_scan, + second_scan, + now, + accept_source_deletions=accept_source_deletions, + check_links=check_links, + ) + if not outputs: + return False + _replace_outputs(outputs) + return True + + +def sync_datasets( + specs, + first_scans, + second_scans, + now, + accept_source_deletions=False, + check_links=False, +): + outputs = [] + changed = [] + for spec in specs: + dataset_outputs, _ = _prepare_dataset( + spec, + first_scans[spec.view_name], + second_scans[spec.view_name], + now, + accept_source_deletions=accept_source_deletions, + check_links=check_links, + ) + if dataset_outputs: + outputs.extend(dataset_outputs) + changed.append(spec.view_name) + if outputs: + _replace_outputs(outputs) + return changed + + +def _configured_specs(data_dir, content_dir): + data_dir = Path(data_dir) + content_dir = Path(content_dir) + return tuple( + DatasetSpec( + spec.view_name, + data_dir / spec.data_path.name, + content_dir / spec.content_path.name, + spec.weight, + hidden_fields=spec.hidden_fields, + slug=spec.slug, + shortlink=spec.shortlink, + field_labels=spec.field_labels, + ) + for spec in DATASETS + ) + + +def build_parser(): + parser = argparse.ArgumentParser(description="同步腾讯文档招聘信息到 GoClub") + parser.add_argument("--source-url", default=DEFAULT_SOURCE_URL) + parser.add_argument("--storage-state", required=True) + parser.add_argument("--data-dir", default=ROOT / "data" / "jobs") + parser.add_argument("--content-dir", default=ROOT / "content" / "docs" / "jobs") + parser.add_argument("--probe-only", action="store_true") + parser.add_argument("--check-links", action="store_true") + parser.add_argument("--accept-source-deletions", action="store_true") + parser.add_argument("--browser-channel") + parser.add_argument("--headed", action="store_true") + parser.add_argument("--timeout-seconds", type=int, default=90) + return parser + + +async def _collect_twice(source, specs): + first = await source.collect(specs) + second = await source.collect(specs) + return first, second + + +def _probe_summary(spec, snapshot): + links = [ + link["url"] + for record in snapshot["records"] + for field in record["fields"] + for link in field.get("links", []) + ] + return { + "page": spec.content_path.stem, + "source_view": spec.view_name, + "sheet_id": snapshot["source"]["sheet_id"], + "view_id": snapshot["source"]["view_id"], + "records": len(snapshot["records"]), + "fields": len(snapshot["schema"]), + "links": len(links), + "page_ranges": snapshot["snapshot"]["page_ranges"], + "scan_hash": _scan_fingerprint(snapshot), + } + + +def main(argv=None): + arguments = build_parser().parse_args(argv) + if arguments.timeout_seconds < 10: + print("同步失败:timeout-seconds 不能小于 10", file=sys.stderr) + return 2 + specs = _configured_specs(arguments.data_dir, arguments.content_dir) + source = QQDocsSource( + arguments.source_url, + arguments.storage_state, + browser_channel=arguments.browser_channel, + headless=not arguments.headed, + timeout_seconds=arguments.timeout_seconds, + ) + try: + first, second = asyncio.run(_collect_twice(source, specs)) + for spec in specs: + assert_matching_scans(first[spec.view_name], second[spec.view_name]) + if arguments.probe_only: + summaries = [_probe_summary(spec, first[spec.view_name]) for spec in specs] + print(json.dumps(summaries, ensure_ascii=False, indent=2)) + return 0 + now = datetime.now(timezone.utc).replace(microsecond=0).isoformat().replace("+00:00", "Z") + changed = sync_datasets( + specs, + first, + second, + now, + accept_source_deletions=arguments.accept_source_deletions, + check_links=arguments.check_links, + ) + except (IntegrityError, OSError, UnicodeError, RuntimeError) as error: + print(f"同步失败:{error}", file=sys.stderr) + return 1 + if changed: + print("已更新:" + "、".join(changed)) + else: + print("无数据变更") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tests/test_sync_qq_jobs.py b/tests/test_sync_qq_jobs.py new file mode 100644 index 0000000..9879c87 --- /dev/null +++ b/tests/test_sync_qq_jobs.py @@ -0,0 +1,935 @@ +import base64 +import http.server +import json +import sys +import tempfile +import threading +import unittest +import zlib +from html.parser import HTMLParser +from pathlib import Path + + +ROOT = Path(__file__).resolve().parents[1] +sys.path.insert(0, str(ROOT / "scripts")) + +from sync_qq_jobs import ( + DatasetSpec, + IntegrityError, + SourceDeletionError, + assert_matching_scans, + check_link_accessibility, + merge_history, + parse_sheet_pages, + render_markdown, + sync_dataset, + validate_snapshot, +) + + +class LinkCollector(HTMLParser): + def __init__(self): + super().__init__() + self.links = [] + + def handle_starttag(self, tag, attrs): + if tag == "a": + attributes = dict(attrs) + if "href" in attributes: + self.links.append(attributes["href"]) + + +class ValidateSnapshotTests(unittest.TestCase): + def test_rejects_incomplete_pagination(self): + snapshot = { + "source": { + "document_id": "DUXJLSnZoTVFhVUVs", + "view_id": "sc_daily", + "view_name": "每日更新", + "source_url": "https://docs.qq.com/smartsheet/DUXJLSnZoTVFhVUVs", + }, + "schema": [ + {"field_id": "fld_company", "name": "公司", "type": "text", "order": 0} + ], + "snapshot": { + "source_total": 1, + "fetched_count": 1, + "pagination_complete": False, + }, + "records": [ + { + "record_id": "rec_1", + "fields": [{"field_id": "fld_company", "value": "示例公司", "links": []}], + } + ], + } + + with self.assertRaisesRegex(IntegrityError, "分页"): + validate_snapshot(snapshot) + + def test_rejects_record_count_mismatch(self): + snapshot = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [{"field_id": "fld_company", "name": "公司", "type": "text", "order": 0}], + "snapshot": { + "source_total": 2, + "fetched_count": 1, + "pagination_complete": True, + }, + "records": [{"record_id": "rec_1", "fields": []}], + } + + with self.assertRaisesRegex(IntegrityError, "记录数"): + validate_snapshot(snapshot) + + def test_rejects_duplicate_record_ids(self): + snapshot = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [{"field_id": "fld_company", "name": "公司", "type": "text", "order": 0}], + "snapshot": { + "source_total": 2, + "fetched_count": 2, + "pagination_complete": True, + }, + "records": [ + {"record_id": "rec_1", "fields": []}, + {"record_id": "rec_1", "fields": []}, + ], + } + + with self.assertRaisesRegex(IntegrityError, "record_id"): + validate_snapshot(snapshot) + + def test_rejects_one_character_link_difference_between_scans(self): + first = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [{"field_id": "fld_apply", "name": "投递链接", "type": "url", "order": 0}], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "fields": [ + { + "field_id": "fld_apply", + "value": "官网投递", + "links": [{"text": "投递", "url": "https://jobs.example/apply?id=A0O1lI#campus"}], + } + ], + } + ], + } + second = { + **first, + "records": [ + { + **first["records"][0], + "fields": [ + { + **first["records"][0]["fields"][0], + "links": [{"text": "投递", "url": "https://jobs.example/apply?id=AOO1lI#campus"}], + } + ], + } + ], + } + + with self.assertRaisesRegex(IntegrityError, "两次全量读取"): + assert_matching_scans(first, second) + + def test_rejects_record_order_difference_between_scans(self): + first = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [], + "snapshot": {"source_total": 2, "fetched_count": 2, "pagination_complete": True}, + "records": [ + {"record_id": "rec_1", "fields": []}, + {"record_id": "rec_2", "fields": []}, + ], + } + second = { + **first, + "records": [first["records"][1], first["records"][0]], + } + + with self.assertRaisesRegex(IntegrityError, "两次全量读取"): + assert_matching_scans(first, second) + + + def test_rejects_field_id_that_is_not_in_view_schema(self): + snapshot = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [{"field_id": "fld_company", "name": "公司", "type": "text", "order": 0}], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "fields": [{"field_id": "fld_apply", "value": "错位值", "links": []}], + } + ], + } + + with self.assertRaisesRegex(IntegrityError, "field_id"): + validate_snapshot(snapshot) + + +class MergeHistoryTests(unittest.TestCase): + def test_scheduled_sync_rejects_missing_source_records(self): + previous = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "status": "active", + "first_seen_at": "2026-08-01T00:00:00Z", + "last_seen_at": "2026-08-06T00:00:00Z", + "removed_at": None, + "fields": [], + } + ], + } + current = { + "source": previous["source"], + "schema": [], + "snapshot": {"source_total": 0, "fetched_count": 0, "pagination_complete": True}, + "records": [], + } + + with self.assertRaisesRegex(SourceDeletionError, "rec_1"): + merge_history(previous, current, now="2026-08-07T00:00:00Z") + + def test_manual_confirmation_preserves_and_marks_removed_record(self): + previous = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "status": "active", + "first_seen_at": "2026-08-01T00:00:00Z", + "last_seen_at": "2026-08-06T00:00:00Z", + "removed_at": None, + "fields": [], + } + ], + } + current = { + "source": previous["source"], + "schema": [], + "snapshot": {"source_total": 0, "fetched_count": 0, "pagination_complete": True}, + "records": [], + } + + merged = merge_history( + previous, + current, + now="2026-08-07T00:00:00Z", + accept_source_deletions=True, + ) + + self.assertEqual(["rec_1"], [record["record_id"] for record in merged["records"]]) + self.assertEqual("source_removed", merged["records"][0]["status"]) + self.assertEqual("2026-08-07T00:00:00Z", merged["records"][0]["removed_at"]) + + def test_removed_history_survives_a_later_source_change(self): + previous = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_active", + "status": "active", + "first_seen_at": "2026-08-01T00:00:00Z", + "fields": [], + }, + { + "record_id": "rec_removed", + "status": "source_removed", + "first_seen_at": "2026-07-01T00:00:00Z", + "removed_at": "2026-08-01T00:00:00Z", + "fields": [], + }, + ], + } + current = { + "source": previous["source"], + "schema": [], + "snapshot": {"source_total": 2, "fetched_count": 2, "pagination_complete": True}, + "records": [ + {"record_id": "rec_active", "fields": []}, + {"record_id": "rec_new", "fields": []}, + ], + } + + merged = merge_history(previous, current, now="2026-08-09T00:00:00Z") + + records = {record["record_id"]: record for record in merged["records"]} + self.assertEqual({"rec_active", "rec_new", "rec_removed"}, set(records)) + self.assertEqual("source_removed", records["rec_removed"]["status"]) + self.assertEqual("2026-08-01T00:00:00Z", records["rec_removed"]["removed_at"]) + + def test_updates_existing_record_by_id_and_preserves_first_seen(self): + previous = { + "source": {"view_id": "sc_daily", "view_name": "每日更新"}, + "schema": [{"field_id": "fld_company", "name": "公司", "type": "text", "order": 0}], + "snapshot": {"source_total": 1, "fetched_count": 1, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "status": "active", + "first_seen_at": "2026-08-01T00:00:00Z", + "last_seen_at": "2026-08-06T00:00:00Z", + "removed_at": None, + "fields": [{"field_id": "fld_company", "value": "旧名称", "links": []}], + } + ], + } + current = { + "source": previous["source"], + "schema": previous["schema"], + "snapshot": {"source_total": 2, "fetched_count": 2, "pagination_complete": True}, + "records": [ + { + "record_id": "rec_1", + "fields": [{"field_id": "fld_company", "value": "新名称", "links": []}], + }, + { + "record_id": "rec_2", + "fields": [{"field_id": "fld_company", "value": "第二家公司", "links": []}], + }, + ], + } + + merged = merge_history(previous, current, now="2026-08-07T00:00:00Z") + + records = {record["record_id"]: record for record in merged["records"]} + self.assertEqual("新名称", records["rec_1"]["fields"][0]["value"]) + self.assertEqual("2026-08-01T00:00:00Z", records["rec_1"]["first_seen_at"]) + self.assertEqual("2026-08-07T00:00:00Z", records["rec_1"]["last_seen_at"]) + self.assertEqual("2026-08-07T00:00:00Z", records["rec_2"]["first_seen_at"]) + self.assertEqual("active", records["rec_2"]["status"]) + + +class RenderMarkdownTests(unittest.TestCase): + def test_renders_paginated_scrollable_table_without_source_entry(self): + source_url = "https://docs.qq.com/smartsheet/example?tab=sc_daily" + snapshot = { + "source": {"source_url": source_url, "view_name": "每日更新"}, + "schema": [ + {"field_id": "company", "name": "公告标题", "type": "text", "order": 0}, + {"field_id": "date", "name": "更新日期", "type": "date", "order": 1}, + ], + "snapshot": {"synced_at": "2026-08-09T00:00:00Z"}, + "records": [ + { + "record_id": f"rec_{day}", + "status": "active", + "fields": [ + {"field_id": "company", "value": f"企业 {day}", "links": []}, + {"field_id": "date", "value": f"2026-08-{day:02d}", "links": []}, + ], + } + for day in range(1, 17) + ], + } + + markdown = render_markdown( + "每日更新", + 1, + snapshot, + slug="daily-updates", + shortlink="553e", + ) + + self.assertNotIn(source_url, markdown) + self.assertIn('slug: "daily-updates"', markdown) + self.assertIn(' - "/s/553e/"', markdown) + self.assertIn('shortlink: "553e"', markdown) + self.assertIn('