Files
energy_dist/dist/app/api/controller/job_hunting.controller.d.ts
2026-04-21 22:34:39 +08:00

10 lines
573 B
TypeScript

import { JobHuntingService } from '../service/job_hunting.service';
import { JobHuntingApplyDto, JobHuntingInfoDto } from '../dto/job_hunting.dto';
import { JobHuntingModel } from 'src/model/job_hunting.model';
export declare class JobHuntingController {
private readonly jobHuntingService;
constructor(jobHuntingService: JobHuntingService);
info(dto: JobHuntingInfoDto): Promise<import("src/app/common/api").ApiResponseVo<JobHuntingModel | null | undefined>>;
apply(dto: JobHuntingApplyDto): Promise<import("src/app/common/api").ApiResponseVo<unknown>>;
}