50 lines
2.4 KiB
JavaScript
50 lines
2.4 KiB
JavaScript
"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.WithdrawController = void 0;
|
|
const openapi = require("@nestjs/swagger");
|
|
const common_1 = require("@nestjs/common");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
const api_1 = require("../../common/api");
|
|
const withdraw_service_1 = require("../service/withdraw.service");
|
|
const withdraw_dto_1 = require("../dto/withdraw.dto");
|
|
let WithdrawController = class WithdrawController {
|
|
withdrawService;
|
|
constructor(withdrawService) {
|
|
this.withdrawService = withdrawService;
|
|
}
|
|
async apply(dto) {
|
|
return await this.withdrawService.applyWithdraw(dto.amount, dto.userBankId);
|
|
}
|
|
};
|
|
exports.WithdrawController = WithdrawController;
|
|
__decorate([
|
|
(0, common_1.Post)('apply'),
|
|
(0, swagger_1.ApiOperation)({ summary: '申请提现' }),
|
|
(0, swagger_1.ApiBody)({ type: withdraw_dto_1.ApplyWithdrawDto }),
|
|
api_1.Api.ApiResponse({
|
|
codeDescription: '200 成功',
|
|
}),
|
|
openapi.ApiResponse({ status: 201 }),
|
|
__param(0, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [withdraw_dto_1.ApplyWithdrawDto]),
|
|
__metadata("design:returntype", Promise)
|
|
], WithdrawController.prototype, "apply", null);
|
|
exports.WithdrawController = WithdrawController = __decorate([
|
|
(0, common_1.Controller)('withdraw'),
|
|
(0, swagger_1.ApiTags)('提现管理'),
|
|
__metadata("design:paramtypes", [withdraw_service_1.WithdrawService])
|
|
], WithdrawController);
|
|
//# sourceMappingURL=withdraw.controller.js.map
|