src/main/java/com/whyc/service/ProductBomHistoryService.java
@@ -38,4 +38,9 @@ public void updateVersionBatch(List<ProductBomHistory> newVersionCurrentHistoryList) { mapper.updateVersionBatch(newVersionCurrentHistoryList); } //查询产品的最大版本信息 public Response getMaxBoom(String parentCode, String parentName, String parentModel) { int maxVersion=mapper.selectMaxVersion(parentCode,parentName,parentModel); return new Response().setII(1,maxVersion>=0?true:false,maxVersion,"返回最大版本"); } }