From 8d4ad0d13ef71e22cc1036e2c6c00aafb20ed597 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期二, 10 十二月 2024 17:41:58 +0800 Subject: [PATCH] 电路试验的驻波比csv报告解析 --- inspect-server/src/main/java/com/yuanchu/mom/mapper/StandardTreeMapper.java | 41 +++++++++++++++++++++++++++++++++-------- 1 files changed, 33 insertions(+), 8 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 1063ef0..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,25 +1,50 @@ package com.yuanchu.mom.mapper; -import com.yuanchu.mom.dto.FactoryDto; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.yuanchu.mom.dto.*; +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; /** -* @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(); + List<StandardTree> selectStandardTreeList2(String sampleType); + StandardProductList selectStandardProductById(Integer id); - List<StandardProductList> getStandardProductListBySample(String sample); + List<StandardProductList> getStandardProductListBySample(String sampleType); + + List<StandardMethodList> getStandardMethodListBySample(String sampleType); + + List<StandardProductList> selectStandardProductListByTree(String tree, String sample, String model, String trees, String laboratory); + + List<StandardProductList> selectStandardProductListByTree2(String tree, String sample, String model, String trees, String laboratory); + + 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, String inspectionItemClass); + + List<ProductDto> selectPList(String name); + + String selSample(String sample); + + List<standardTreeDto> exportStandTree(); } -- Gitblit v1.9.3