diff --git a/backend/services/trading-service/src/api/controllers/c2c.controller.ts b/backend/services/trading-service/src/api/controllers/c2c.controller.ts index 86ab4817..485b3538 100644 --- a/backend/services/trading-service/src/api/controllers/c2c.controller.ts +++ b/backend/services/trading-service/src/api/controllers/c2c.controller.ts @@ -280,7 +280,7 @@ export class C2cController { @ApiResponse({ status: 200, description: '上传成功' }) async uploadPaymentProof( @Param('orderNo') orderNo: string, - @UploadedFile() file: Express.Multer.File, + @UploadedFile() file: { originalname: string; buffer: Buffer; mimetype: string; size: number }, @Req() req: any, ): Promise { const accountSequence = req.user?.accountSequence;