Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions boss_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,14 @@
# ── Experience filter codes ─────────────────────────────────────────
EXP_CODES: dict[str, str] = {
"不限": "0",
"在校/应届": "108",
"1年以内": "101",
"1-3年": "102",
"3-5年": "103",
"5-10年": "104",
"10年以上": "105",
"在校生": "108",
"应届生": "102",
"经验不限": "101",
"1年以内": "103",
"1-3年": "104",
"3-5年": "105",
"5-10年": "106",
"10年以上": "107",
}

# ── Degree filter codes ─────────────────────────────────────────────
Expand Down Expand Up @@ -206,6 +208,6 @@
# ── Job type filter codes ──────────────────────────────────────────
JOB_TYPE_CODES: dict[str, str] = {
"全职": "1901",
"实习": "1902",
"兼职": "1903",
"实习": "1903",
}