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
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:
8
src/types/Management/list.d.ts
vendored
8
src/types/Management/list.d.ts
vendored
@@ -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 {
|
||||
|
||||
11
src/types/cms/company.d.ts
vendored
11
src/types/cms/company.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user