feat(mall): 修改商品分类查询逻辑

- 将 TzProd、TzProdBo 和 TzProdVo 中的 categoryId 类型从 Long 改为 String
- 修改 TzProdServiceImpl 中的 pageByCategoryId 方法,使用 like 查询替代 in 查询
- 更新 TzProdServiceImpl 中的条件查询逻辑,使用 like 查询替代 eq 查询
- 移除 WxXcxUtils 中的冗余注释代码
This commit is contained in:
清晨
2025-04-18 09:28:10 +08:00
parent 06fba793ba
commit 444d1af15a
5 changed files with 15 additions and 8 deletions

View File

@@ -29,9 +29,6 @@ public class WxXcxUtils {
String result = HttpRequest.post(url).body(json.toString()).execute().body();
JSONObject jsonObject = JSONObject.parseObject(result);
/*JSONObject phoneInfo = jsonObject.getJSONObject("phone_info");
System.out.println(phoneInfo+"==================================");
String phoneNumber = phoneInfo.get("phoneNumber").toString();*/
return jsonObject;
}