求职者管理增加收藏功能、面试邀请、人才库功能开发
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
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:
francis-fh
2026-07-16 19:34:40 +08:00
parent e4c413baad
commit 03a0f7fd29
7 changed files with 527 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ declare namespace API.MobileUser {
export interface ListRow {
applyId?: string;
jobId?: string;
companyId?: number;
createTime?: string;
userId: number;
name: string;

48
src/types/talentcollect/list.d.ts vendored Normal file
View File

@@ -0,0 +1,48 @@
declare namespace API.TalentCollect {
export interface ListResult {
total: number;
rows: ListRow[];
code: number;
msg: string;
}
export interface ListRow {
id?: number;
companyId?: number;
userId?: number;
/** 意向等级 1=高意向,2=中等意向,3=低意向 */
intentionLevel?: string;
/** 意向岗位ID */
intendJobIds?: string;
/** 人才标签 */
collectTags?: string;
/** 收藏来源 1=简历搜索,2=投递记录,3=邀约面试,4=手动录入 */
sourceType?: string;
/** 备注 */
remark?: string;
createTime?: string;
// 用户信息(来自关联查询)
name?: string;
age?: string;
sex?: string;
birthDate?: string;
education?: string;
politicalAffiliation?: string;
phone?: string;
avatar?: string;
salaryMin?: string;
salaryMax?: string;
area?: string;
idCard?: string;
workExperience?: string;
}
export interface ListParams {
intentionLevel?: string;
sourceType?: string;
collectTags?: string;
name?: string;
phone?: string;
education?: string;
}
}