feat(mall): 修改商品分类查询逻辑
- 将 TzProd、TzProdBo 和 TzProdVo 中的 categoryId 类型从 Long 改为 String - 修改 TzProdServiceImpl 中的 pageByCategoryId 方法,使用 like 查询替代 in 查询 - 更新 TzProdServiceImpl 中的条件查询逻辑,使用 like 查询替代 eq 查询 - 移除 WxXcxUtils 中的冗余注释代码
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user