m
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
"use strict";
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.JobHuntingController = void 0;
|
||||
const openapi = require("@nestjs/swagger");
|
||||
const common_1 = require("@nestjs/common");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const job_hunting_service_1 = require("../service/job_hunting.service");
|
||||
const job_hunting_dto_1 = require("../dto/job_hunting.dto");
|
||||
const api_1 = require("../../common/api");
|
||||
const job_hunting_model_1 = require("../../../model/job_hunting.model");
|
||||
let JobHuntingController = class JobHuntingController {
|
||||
jobHuntingService;
|
||||
constructor(jobHuntingService) {
|
||||
this.jobHuntingService = jobHuntingService;
|
||||
}
|
||||
info(dto) {
|
||||
return this.jobHuntingService.info(dto);
|
||||
}
|
||||
apply(dto) {
|
||||
return this.jobHuntingService.apply(dto);
|
||||
}
|
||||
};
|
||||
exports.JobHuntingController = JobHuntingController;
|
||||
__decorate([
|
||||
(0, common_1.Get)('record'),
|
||||
(0, swagger_1.ApiOperation)({ summary: '申请记录' }),
|
||||
api_1.Api.ApiResponse({
|
||||
codeDescription: '200 成功,400 失败',
|
||||
model: job_hunting_model_1.JobHuntingModel,
|
||||
}),
|
||||
openapi.ApiResponse({ status: 200 }),
|
||||
__param(0, (0, common_1.Query)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [job_hunting_dto_1.JobHuntingInfoDto]),
|
||||
__metadata("design:returntype", void 0)
|
||||
], JobHuntingController.prototype, "info", null);
|
||||
__decorate([
|
||||
(0, common_1.Post)('apply'),
|
||||
(0, swagger_1.ApiOperation)({ summary: '申请' }),
|
||||
api_1.Api.ApiResponse({
|
||||
codeDescription: '200 成功,400 失败',
|
||||
}),
|
||||
openapi.ApiResponse({ status: 201 }),
|
||||
__param(0, (0, common_1.Body)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [job_hunting_dto_1.JobHuntingApplyDto]),
|
||||
__metadata("design:returntype", void 0)
|
||||
], JobHuntingController.prototype, "apply", null);
|
||||
exports.JobHuntingController = JobHuntingController = __decorate([
|
||||
(0, common_1.Controller)('daily-meeting'),
|
||||
(0, swagger_1.ApiTags)('求职申请'),
|
||||
__metadata("design:paramtypes", [job_hunting_service_1.JobHuntingService])
|
||||
], JobHuntingController);
|
||||
//# sourceMappingURL=job_hunting.controller.js.map
|
||||
Reference in New Issue
Block a user