From 97bb7a8832281eafe0ef947ea095258d355e52f5 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期一, 30 十二月 2024 15:57:51 +0800 Subject: [PATCH] 无源器件的数采+电路模版查询 --- inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java | 29 +++++++++++++++++------------ 1 files changed, 17 insertions(+), 12 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 43cec1d..4e104ad 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,9 +1,7 @@ package com.yuanchu.mom.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.yuanchu.mom.dto.FactoryDto; -import com.yuanchu.mom.dto.SampleDto; -import com.yuanchu.mom.dto.SampleTypeDto; +import com.yuanchu.mom.dto.*; import com.yuanchu.mom.pojo.StandardMethodList; import com.yuanchu.mom.pojo.StandardProductList; import com.yuanchu.mom.pojo.StandardTree; @@ -11,11 +9,11 @@ import java.util.List; /** -* @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(); @@ -28,11 +26,11 @@ 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(); @@ -40,7 +38,14 @@ String getLaboratory(String str); - Integer getStructureItemParameterId(String sampleType, String item, String itemChild); + Integer getStructureItemParameterId(String sampleType, String item, String itemChild, String inspectionItemClass); + + List<ProductDto> selectPList(String name); + + String selSample(String sample); + + List<standardTreeDto> exportStandTree(); + } -- Gitblit v1.9.3