bug修复
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 19:20:32 +08:00
parent ac9254994a
commit aa48790c24
5 changed files with 153 additions and 15 deletions

View File

@@ -39,6 +39,10 @@ declare namespace API.ManagementList {
createTime?: string;
jobCategory?: string;
description?: string;
/** 是否重点人群 0是,1否 */
isKeyPopulations?: string;
/** 重点人群-1农民工、2团场职工、3失业人员、4零就业家庭、5零工人员、6退役军人 */
keyPopulations?: string;
}
export interface AddParams {
@@ -71,6 +75,10 @@ declare namespace API.ManagementList {
jobContactList?: ContactPerson[];
jobCategory?: string;
description?: string;
/** 是否重点人群 0是,1否 */
isKeyPopulations?: string;
/** 重点人群-1农民工、2团场职工、3失业人员、4零就业家庭、5零工人员、6退役军人 */
keyPopulations?: string;
}
export interface ListParams {

View File

@@ -7,6 +7,15 @@ declare namespace API.CmsCompany {
data?: any;
}
export interface CompanyContact {
createTime: string | null;
updateTime: string | null;
id: number | null;
companyId: number;
contactPerson: string;
contactPersonPhone: string;
}
export interface CompanyUser {
createTime: string;
updateTime: string;
@@ -29,7 +38,7 @@ declare namespace API.CmsCompany {
contactPersonPhone?: string | null;
status: number; // 0 待审核, 1 通过, 2 驳回
notPassReason?: string | null;
companyContactList?: any;
companyContactList?: CompanyContact[];
registeredAddress: string;
isAbnormal?: any;
rejectTime?: string | null;