flat: 暂存

This commit is contained in:
史典卓
2025-03-28 15:30:35 +08:00
parent 2bf8cf55ac
commit b3238e5c2b
50 changed files with 3302 additions and 416 deletions

View File

@@ -19,6 +19,32 @@ declare namespace API.ManagementList {
postingDate: string;
vacancies: number;
view: number;
release: number;
isPublish: number;
}
export interface AddParams {
applyNum?: number;
companyId?: number;
companyName?: string;
education?: string;
experience?: string;
isApply?: number;
isCollection?: number;
isHot?: number;
jobId?: number;
jobLocation?: string;
jobLocationAreaCode?: number;
jobTitle?: string;
latitude?: number;
longitude?: number;
maxSalary?: number;
minSalary?: number;
postingDate?: string;
vacancies?: number;
view?: number;
release?: number;
isPublish?: number;
}
export interface ListParams {
@@ -29,6 +55,14 @@ declare namespace API.ManagementList {
current?: number;
}
export interface ManageIdResult {
code: number;
msg: string;
data: Manage;
rows: Array<any>;
total: number;
}
export interface ManagePageResult {
code: number;
msg: string;

25
src/types/application/preproducts.d.ts vendored Normal file
View File

@@ -0,0 +1,25 @@
declare namespace API.ApplicationProducts {
export interface result {
total: number;
rows: Product[];
code: number;
msg: string;
}
export interface Product {
createTime: string;
companyCardId: number;
name: string;
companyNature: string;
backgroudColor: string;
status: number;
}
export interface Params {
companyCardId?: number;
name?: string;
companyNature?: string;
backgroudColor?: string;
status?: number;
}
}

View File

@@ -7,7 +7,7 @@ declare namespace API.AreaBusiness {
createTime: string;
}
export interface LinePoint {
export interface LinePoint {
latitude: number;
longitude: numberl;
lineName: string;
@@ -27,6 +27,7 @@ declare namespace API.AreaBusiness {
latitude: number;
longitude: number;
commercialAreaId?: number;
address?: string;
}
export interface CirclePageResult {

43
src/types/classify/industry.d.ts vendored Normal file
View File

@@ -0,0 +1,43 @@
declare namespace API.ClassifyIndustry {
export interface IndustryResult {
total: number;
rows: IndustryRow[];
code: number;
msg: string;
}
export interface IndustryRow {
createTime?: any;
industryId: number;
parentId: number;
industryName: string;
orderNum: number;
status: string;
}
export interface Params {
industryId?: number;
parentId?: number;
industryName?: string;
orderNum?: number;
status?: string;
}
export interface IndustryTreeResult {
msg: string;
code: number;
data: IndustryTreeParentData[];
}
export interface IndustryTreeData {
id: number;
label: string;
children?: IndustryTreeParentData[];
}
export interface IndustryTreeParentData {
id: number;
label: string;
children?: IndustryTreeData[];
}
}

25
src/types/classify/jobs.d.ts vendored Normal file
View File

@@ -0,0 +1,25 @@
declare namespace API.ClassifyJobs {
export interface Result {
total: number;
rows: Jobs[];
code: number;
msg: string;
}
export interface Jobs {
createTime?: any;
jobId: number;
parentId: number;
jobName: string;
orderNum: number;
status: string;
}
export interface Params {
jobId?: number;
parentId?: number;
jobName?: string;
orderNum?: number;
status?: string;
}
}

View File

@@ -1,4 +1,3 @@
declare namespace API.CompanyList {
export interface CompanyListResult {
total: number;
@@ -6,6 +5,7 @@ declare namespace API.CompanyList {
code: number;
msg: string;
}
export interface Company {
createTime: string;
companyId: number;
@@ -14,7 +14,9 @@ declare namespace API.CompanyList {
industry: string;
scale: string;
code: string;
description: string;
}
export interface Params {
createTime?: string;
companyId?: number;

View File

@@ -16,7 +16,7 @@ declare namespace API.JobFairList {
longitude?: any;
startTime: string;
endTime: string;
companyList?: any;
companyList?: RootObjectDataCompanyList[];
}
export interface Params {
createTime?: any;
@@ -30,4 +30,10 @@ declare namespace API.JobFairList {
endTime: string;
companyList?: any;
}
export interface ListInfoResult {
msg: string;
code: number;
data: JobFairListRows;
}
}

38
src/types/mobileusers/list.d.ts vendored Normal file
View File

@@ -0,0 +1,38 @@
declare namespace API.MobileUser {
export interface ListResult {
total: number;
rows: ListRow[];
code: number;
msg: string;
}
export interface ListRow {
createTime?: string;
userId: number;
name: string;
age: string;
sex: string;
birthDate: string;
education: string;
politicalAffiliation: string;
phone: string;
avatar: string;
salaryMin: string;
salaryMax: string;
area: string;
status: string;
loginIp: string;
loginDate?: string;
jobTitleId?: string;
jobTitle?: string;
}
export interface ListParams {
name?: string;
age?: string;
sex?: string;
birthDate?: string;
education?: string;
politicalAffiliation?: string;
}
}