From 9fdfa29e2a71c4f3c499c714755e2696b4e9ec76 Mon Sep 17 00:00:00 2001 From: value <z1292839451@163.com> Date: 星期三, 19 六月 2024 23:35:43 +0800 Subject: [PATCH] 修复下单项目重复 --- inspect-server/src/main/java/com/yuanchu/mom/service/StandardMethodListService.java | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 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..b5cbfc7 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 @@ -1,9 +1,10 @@ package com.yuanchu.mom.service; -import com.yuanchu.mom.pojo.StandardMethodList; import com.baomidou.mybatisplus.extension.service.IService; +import com.yuanchu.mom.pojo.StandardMethodList; import java.util.List; +import java.util.Map; /** * @author Administrator @@ -14,6 +15,14 @@ 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(); + + Integer getStandardMethodId(String code); } -- Gitblit v1.9.3