From 143982ce873b4e868d52cb5315f939386c0fb22c Mon Sep 17 00:00:00 2001 From: value <z1292839451@163.com> Date: 星期六, 06 四月 2024 13:08:29 +0800 Subject: [PATCH] 新增样品管理文件,完成仓库新增和查询 --- inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java b/inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java index 086ec95..fcf9119 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java @@ -2,8 +2,10 @@ import com.yuanchu.mom.pojo.StandardMethodList; import com.baomidou.mybatisplus.extension.service.IService; +import com.yuanchu.mom.pojo.StandardProductList; import java.util.List; +import java.util.Map; /** * @author Administrator @@ -14,6 +16,11 @@ int addStandardMethodList(Integer standardId, String tree); - List<StandardMethodList> selectsStandardMethodByFLSSM(String tree); + Map<String, List<?>> selectsStandardMethodByFLSSM(String tree); + Map<String, List<?>> selectsStandardMethodByFLSSM2(String tree); + + int delStandardMethodByFLSSM(Integer id); + + List<StandardMethodList> selectStandardMethodEnum(); } -- Gitblit v1.9.3