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/StandardTreeService.java | 23 ++++++++++++++++++++--- 1 files changed, 20 insertions(+), 3 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/service/StandardTreeService.java b/inspect-server/src/main/java/com/yuanchu/mom/service/StandardTreeService.java index 41bcb62..8496f6a 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/service/StandardTreeService.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/service/StandardTreeService.java @@ -1,11 +1,13 @@ package com.yuanchu.mom.service; -import com.yuanchu.mom.dto.FactoryDto; -import com.yuanchu.mom.pojo.StandardProductList; -import com.yuanchu.mom.pojo.StandardTree; import com.baomidou.mybatisplus.extension.service.IService; +import com.yuanchu.mom.dto.FactoryDto; +import com.yuanchu.mom.dto.SampleTypeDto; +import com.yuanchu.mom.pojo.StandardTree; +import org.springframework.web.multipart.MultipartFile; import java.util.List; +import java.util.Map; /** * @author Administrator @@ -22,4 +24,19 @@ int addStandardProduct(String ids, String tree); + List<SampleTypeDto> getStandardTree2(); + + int upStandardProducts(Map<String, Object> product); + + List<StandardTree> getStandTreeBySampleType(String laboratory, String sampleType); + + void inExcelOfTree(MultipartFile file); + + void resetTreeOfPrice(String tree, Integer standardId); + + void resetTreeOfHour(String tree, Integer standardId); + + void resetTreeOfAsk(String tree, Integer standardId); + + void importWorkstationExcel(MultipartFile file); } -- Gitblit v1.9.3