75 lines
2.5 KiB
TypeScript
75 lines
2.5 KiB
TypeScript
import { PaginatedDto } from 'src/app/common/api';
|
|
import { Repository } from 'typeorm';
|
|
import { OrderBy } from '../../app/common/enum/order_by.enum';
|
|
import { Expression } from '../../app/common/enum/expression.enum';
|
|
import { JobHuntingModel } from '../../model/job_hunting.model';
|
|
declare class GeneratedJob_huntingFindOrderDto {
|
|
id?: OrderBy;
|
|
createTime?: OrderBy;
|
|
updateTime?: OrderBy;
|
|
deleteTime?: OrderBy;
|
|
realName?: OrderBy;
|
|
idCardNo?: OrderBy;
|
|
phone?: OrderBy;
|
|
teamCount?: OrderBy;
|
|
dreamResume?: OrderBy;
|
|
status?: OrderBy;
|
|
type?: OrderBy;
|
|
rejectReason?: OrderBy;
|
|
}
|
|
declare class GeneratedJob_huntingFindRelationDto {
|
|
user?: boolean;
|
|
}
|
|
declare class GeneratedJob_huntingFindExpressionDto {
|
|
id?: Expression;
|
|
createTime?: Expression;
|
|
updateTime?: Expression;
|
|
deleteTime?: Expression;
|
|
realName?: Expression;
|
|
idCardNo?: Expression;
|
|
phone?: Expression;
|
|
teamCount?: Expression;
|
|
dreamResume?: Expression;
|
|
status?: Expression;
|
|
type?: Expression;
|
|
rejectReason?: Expression;
|
|
}
|
|
declare class GeneratedJob_huntingFindExtraDto {
|
|
expression: GeneratedJob_huntingFindExpressionDto;
|
|
order: GeneratedJob_huntingFindOrderDto[];
|
|
relations?: GeneratedJob_huntingFindRelationDto;
|
|
}
|
|
declare class GeneratedJob_huntingFindWhereDto {
|
|
id?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
deleteTime?: string;
|
|
realName?: string;
|
|
idCardNo?: string;
|
|
phone?: string;
|
|
teamCount?: number;
|
|
dreamResume?: string;
|
|
status?: number;
|
|
type?: number;
|
|
rejectReason?: string;
|
|
}
|
|
declare class GeneratedJob_huntingFindDto {
|
|
paginated?: PaginatedDto;
|
|
where?: GeneratedJob_huntingFindWhereDto;
|
|
extra?: GeneratedJob_huntingFindExtraDto;
|
|
}
|
|
declare const GeneratedJob_huntingDetailWhereDto_base: import("@nestjs/common").Type<Partial<Omit<GeneratedJob_huntingFindWhereDto, "id">>>;
|
|
declare class GeneratedJob_huntingDetailWhereDto extends GeneratedJob_huntingDetailWhereDto_base {
|
|
}
|
|
declare class GeneratedJob_huntingDetailDto {
|
|
where: GeneratedJob_huntingDetailWhereDto;
|
|
extra: GeneratedJob_huntingFindExtraDto;
|
|
}
|
|
export declare class GeneratedJob_huntingController {
|
|
private repos;
|
|
constructor(repos: Repository<JobHuntingModel>);
|
|
list(dto: GeneratedJob_huntingFindDto): Promise<import("src/app/common/api").ApiResponseVo<import("src/app/common/api").PaginatedVo<JobHuntingModel[]>>>;
|
|
detail(id: number, dto: GeneratedJob_huntingDetailDto): Promise<import("src/app/common/api").ApiResponseVo<JobHuntingModel | null | undefined>>;
|
|
}
|
|
export {};
|