参数 undefined的情况

This commit is contained in:
2024-08-23 10:11:06 +08:00
parent 37fffa0f98
commit c0078222f5
3 changed files with 4 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ public class ProductController {
@RequestParam("shopId") String shopId,
@RequestParam("productId") String productId,
@RequestParam("spec_tag") String spec_tag,
@RequestParam("isVip") Integer isVip
@RequestParam("isVip") String isVip
) {
return productService.queryProductSku(code,shopId, productId, spec_tag,isVip);
}