我的控制器代码是这样的。
@Controller('customer')
export class CustomerController{
constructor(private readonly customerService: CustomerService){}
@Post('lookup')
async someMethod(@Body() body:any){
console.log("BEGIN -- CustomerController.someMethod");
我希望在 Swagger 中看到一个可以输入一些文本作为请求正文的地方,但我看到了这个