From 3ae364164cb9d85acce0b53a1ba5c70a80991308 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期三, 03 七月 2024 22:21:49 +0800 Subject: [PATCH] 温度循环+报告英文换行+检验只有一项的设备查询+光纤配置报告换页+温度湿度 --- inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java | 26 ++++++++++++++++---------- 1 files changed, 16 insertions(+), 10 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java index 088b697..496ea7b 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java @@ -1,22 +1,22 @@ package com.yuanchu.mom.mapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.yuanchu.mom.dto.FactoryDto; +import com.yuanchu.mom.dto.ProductDto; import com.yuanchu.mom.dto.SampleDto; import com.yuanchu.mom.dto.SampleTypeDto; import com.yuanchu.mom.pojo.StandardMethodList; import com.yuanchu.mom.pojo.StandardProductList; import com.yuanchu.mom.pojo.StandardTree; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; -import java.util.Map; /** -* @author Administrator -* @description 閽堝琛ㄣ�恠tandard_tree(鏍囧噯鏍�)銆戠殑鏁版嵁搴撴搷浣淢apper -* @createDate 2024-03-01 15:06:44 -* @Entity com.yuanchu.mom.pojo.StandardTree -*/ + * @author Administrator + * @description 閽堝琛ㄣ�恠tandard_tree(鏍囧噯鏍�)銆戠殑鏁版嵁搴撴搷浣淢apper + * @createDate 2024-03-01 15:06:44 + * @Entity com.yuanchu.mom.pojo.StandardTree + */ public interface StandardTreeMapper extends BaseMapper<StandardTree> { List<FactoryDto> selectStandardTreeList(); @@ -29,17 +29,23 @@ List<StandardMethodList> getStandardMethodListBySample(String sampleType); - List<StandardProductList> selectStandardProductListByTree(String tree, String sample, String model, String trees); + List<StandardProductList> selectStandardProductListByTree(String tree, String sample, String model, String trees, String laboratory); - List<StandardProductList> selectStandardProductListByTree2(String tree, String sample, String model, String trees); + List<StandardProductList> selectStandardProductListByTree2(String tree, String sample, String model, String trees, String laboratory); - List<StandardProductList> selectStandardProductListByTree3(String tree, String sample, String model, String trees); + List<StandardProductList> selectStandardProductListByTree3(String tree, String sample, String model, String trees, String laboratory); List<SampleTypeDto> getStandardTree2(); List<SampleDto> getStandardTree3(String sampleType); String getLaboratory(String str); + + Integer getStructureItemParameterId(String sampleType, String item, String itemChild); + + List<ProductDto> selectPList(String name); + + String selSample(String sample); } -- Gitblit v1.9.3