From 71f44d71edeabfdcc83366127a2f1f40f5a8de3e Mon Sep 17 00:00:00 2001 From: 123456 <123456> Date: 星期三, 17 七月 2024 16:08:32 +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