m
This commit is contained in:
+68
@@ -0,0 +1,68 @@
|
||||
"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.RechargeController = 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 recharge_service_1 = require("../service/recharge.service");
|
||||
const recharge_dto_1 = require("../dto/recharge.dto");
|
||||
const recharge_model_1 = require("../../../model/recharge.model");
|
||||
let RechargeController = class RechargeController {
|
||||
rechargeService;
|
||||
constructor(rechargeService) {
|
||||
this.rechargeService = rechargeService;
|
||||
}
|
||||
async apply(dto) {
|
||||
return await this.rechargeService.applyRecharge(dto.amount);
|
||||
}
|
||||
async cancel(orderId) {
|
||||
return await this.rechargeService.cancelOrder(orderId);
|
||||
}
|
||||
};
|
||||
exports.RechargeController = RechargeController;
|
||||
__decorate([
|
||||
(0, common_1.Post)('apply'),
|
||||
(0, swagger_1.ApiOperation)({ summary: '申请充值' }),
|
||||
(0, swagger_1.ApiBody)({ type: recharge_dto_1.ApplyRechargeDto }),
|
||||
api_1.Api.ApiResponse({
|
||||
codeDescription: '200 成功',
|
||||
model: recharge_model_1.RechargeModel,
|
||||
}),
|
||||
openapi.ApiResponse({ status: 201, type: Object }),
|
||||
__param(0, (0, common_1.Body)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [recharge_dto_1.ApplyRechargeDto]),
|
||||
__metadata("design:returntype", Promise)
|
||||
], RechargeController.prototype, "apply", null);
|
||||
__decorate([
|
||||
(0, common_1.Post)(':orderId/cancel'),
|
||||
(0, swagger_1.ApiOperation)({ summary: '取消充值订单' }),
|
||||
(0, swagger_1.ApiParam)({ name: 'orderId', description: '订单 ID' }),
|
||||
api_1.Api.ApiResponse({
|
||||
codeDescription: '200 成功',
|
||||
}),
|
||||
openapi.ApiResponse({ status: 201 }),
|
||||
__param(0, (0, common_1.Param)('orderId')),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [Number]),
|
||||
__metadata("design:returntype", Promise)
|
||||
], RechargeController.prototype, "cancel", null);
|
||||
exports.RechargeController = RechargeController = __decorate([
|
||||
(0, common_1.Controller)('recharge'),
|
||||
(0, swagger_1.ApiTags)('充值管理'),
|
||||
__metadata("design:paramtypes", [recharge_service_1.RechargeService])
|
||||
], RechargeController);
|
||||
//# sourceMappingURL=recharge.controller.js.map
|
||||
Reference in New Issue
Block a user