统计分析新增
This commit is contained in:
20
src/types/analysis/industry.d.ts
vendored
Normal file
20
src/types/analysis/industry.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
declare namespace API.Analysis {
|
||||
export interface IndustryResult {
|
||||
data: TrendItem[];
|
||||
code: number;
|
||||
msg: string;
|
||||
}
|
||||
|
||||
export interface TrendItem {
|
||||
date: string;
|
||||
category: string;
|
||||
value: number;
|
||||
}
|
||||
|
||||
export interface IndustryParams {
|
||||
timeDimension: '月' | '季度' | '年';
|
||||
type: '岗位发布数量' | '招聘增长率';
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user