订单详情调整

This commit is contained in:
2024-09-26 16:00:52 +08:00
parent a43aaa3e73
commit 64a56ac4c2
2 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ public class ProductController {
@RequestParam(required = false) String code,
@RequestParam(required = false) Integer shopId
) {
if (shopId == null && StrUtil.isNotBlank(code)) {
if (shopId == null && StrUtil.isBlank(code)) {
return Result.fail("参数缺失");
}
return productService.queryShopIdByTableCode(userId, openId, code,lat,lng, shopId);