From 1ab5999f546adcca439eb32ea5ecd34819a13ff6 Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期六, 12 十月 2024 09:31:07 +0800
Subject: [PATCH] 修改RBD识别算法
---
modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
index 256e177..f4ceb65 100644
--- a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
+++ b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
@@ -398,11 +398,19 @@
return list;
}
- private void deleteByShipId(Long shipId) {
+ public void deleteByShipId(Long shipId) {
baseDao.deleteByShipId(shipId);
}
private List<XhProductModel> getByShipId(Long shipId) {
return baseDao.getByShipId(shipId);
}
+
+ public void deleteByPid(Long id) {
+ baseDao.deleteByPid(id);
+ }
+
+ public Long[] getByPid(Long id) {
+ return baseDao.getByPid(id);
+ }
}
--
Gitblit v1.9.1