个人用户管理开发
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 20:15:25 +08:00
parent 03a0f7fd29
commit d2311d0c5b
5 changed files with 311 additions and 2 deletions

68
src/types/cms/appuser.d.ts vendored Normal file
View File

@@ -0,0 +1,68 @@
declare namespace API.CmsAppUser {
export interface AppUserResult {
total: number;
rows: AppUserRow[];
code: number;
msg: string;
data?: any;
}
export interface AppUserRow {
createTime: string | null;
updateTime: string | null;
userId: number;
name: string | null;
age: string | null;
sex: string;
birthDate: string | null;
education: string | null;
politicalAffiliation: string | null;
phone: string;
avatar: string;
salaryMin: string | null;
salaryMax: string | null;
area: string | null;
status: string;
loginIp: string;
loginDate: string | null;
jobTitleId: string | null;
experience: string | null;
isRecommend: number;
email: string | null;
jobTitle: string | null;
jobName: string | null;
idCard: string | null;
isCompanyUser: string;
password: string | null;
openid: string | null;
unionid: string | null;
nation: string | null;
workExperience: string | null;
company: string | null;
experiencesList: any;
appSkillsList: any;
fileList: any;
myChart: any;
ytjPassword: string | null;
address: string | null;
domicileAddress: string | null;
lcUserid: string | null;
userType: string | null;
resumeStatus: string | null;
matchLevelDesc: string | null;
applyId: string | null;
}
export interface ListParams {
pageNum?: number;
pageSize?: number;
name?: string;
phone?: string;
sex?: string;
education?: string;
area?: string;
status?: string;
politicalAffiliation?: string;
idCard?: string;
}
}