Merge branch 'master' of http://124.243.245.42:3000/sh/shz-admin
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
2026-06-27 22:45:18 +08:00
18 changed files with 21285 additions and 42824 deletions

View File

@@ -14,6 +14,7 @@ declare namespace API.ManagementList {
isApply?: number;
isCollection?: number;
isHot?: number;
isUrgent?: number;
jobId?: number;
jobLocation?: string;
jobLocationAreaCode?: string;
@@ -30,6 +31,7 @@ declare namespace API.ManagementList {
jobType?: string;
jobContactList?: ContactPerson[];
createTime?: string;
jobCategory?: string;
}
export interface AddParams {
@@ -41,6 +43,7 @@ declare namespace API.ManagementList {
isApply?: number;
isCollection?: number;
isHot?: number;
isUrgent?: number;
jobId?: number;
jobLocation?: string;
jobLocationAreaCode?: string;
@@ -56,6 +59,7 @@ declare namespace API.ManagementList {
isPublish?: number;
jobType?: string;
jobContactList?: ContactPerson[];
jobCategory?: string;
}
export interface ListParams {
@@ -82,4 +86,64 @@ declare namespace API.ManagementList {
total: number;
rows: Array<Manage>;
}
/** 推荐简历 - 技能 */
export interface RecommendSkill {
id?: number;
userId?: number;
name?: string;
levels?: string;
}
/** 推荐简历 - 工作经历 */
export interface RecommendExperience {
id?: number;
companyName?: string;
position?: string;
userId?: number;
startDate?: string;
endDate?: string;
description?: string;
}
/** 推荐简历 - 用户记录 */
export interface RecommendUser {
userId?: number;
name?: string;
age?: string;
sex?: string;
birthDate?: string;
education?: string;
politicalAffiliation?: string;
phone?: string;
avatar?: string;
salaryMin?: string;
salaryMax?: string;
area?: string;
status?: string;
loginIp?: string;
loginDate?: string;
jobTitleId?: string;
experience?: string;
idCard?: string;
isCompanyUser?: string;
nation?: string;
workExperience?: string;
matchLevelDesc?: string;
experiencesList?: RecommendExperience[];
appSkillsList?: RecommendSkill[];
}
export interface RecommendPageResult {
code: number;
msg: string;
data: RecommendUser[];
}
export interface SkillPageResult {
code: number;
msg: string;
total: number;
rows: RecommendSkill[];
}
}

View File

@@ -109,6 +109,7 @@ declare namespace API {
vacancies?: number;
view?: number;
companyCardId?: number;
isView?: string; // 简历是否被查看0-未查看1-已查看
}
export interface MessageListResult {

View File

@@ -41,5 +41,7 @@ declare namespace API.MobileUser {
birthDate?: string;
education?: string;
politicalAffiliation?: string;
phone?: string;
jobName?: string;
}
}