建立生成器功能
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-23 12:30:28 +08:00
parent cd92dd4628
commit cd9a5b4c35
6 changed files with 257 additions and 49 deletions

View File

@@ -38,6 +38,8 @@ declare namespace API.CmsAppUser {
unionid: string | null;
nation: string | null;
workExperience: string | null;
schoolName: string | null;
endTime: string | null;
company: string | null;
experiencesList: any;
appSkillsList: any;
@@ -59,10 +61,17 @@ declare namespace API.CmsAppUser {
name?: string;
phone?: string;
sex?: string;
age?: string;
birthDate?: string;
education?: string;
schoolName?: string;
endTime?: string;
area?: string;
status?: string;
politicalAffiliation?: string;
nation?: string;
userType?: string;
workExperience?: string;
idCard?: string;
orderByColumn?: string;
isAsc?: string;

View File

@@ -33,6 +33,11 @@ declare namespace API.MobileUser {
idCard?:string;
interviewStatus?: string;
interviewId?: number;
schoolName?: string;
endTime?: string;
nation?: string;
userType?: string;
workExperience?: string;
}
export interface ListParams {
@@ -44,5 +49,12 @@ declare namespace API.MobileUser {
politicalAffiliation?: string;
phone?: string;
jobName?: string;
jobTitleId?: string;
schoolName?: string;
endTime?: string;
nation?: string;
userType?: string;
workExperience?: string;
area?: string;
}
}