modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/controller/XhProductModelController.java
@@ -105,7 +105,14 @@ @GetMapping("getProductList") public Result<List<XhProductModel>> getProductList(Long shipId, Integer productType) { if(productType==2){ shipId =null; } List<XhProductModel> list = xhProductModelService.getProductList(shipId, productType - 1); if(productType == 5){ List<XhProductModel> list2 = xhProductModelService.getProductList(shipId, productType - 2); list.addAll(list2); } return Result.ok(list); }