From c79f68a2a71cc8cc181525d233ef419745ee3d27 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期二, 04 三月 2025 13:24:55 +0800 Subject: [PATCH] 原始记录模版修改 --- basic-server/src/main/java/com/ruoyi/basic/mapper/StandardTreeMapper.java | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 92 insertions(+), 0 deletions(-) diff --git a/basic-server/src/main/java/com/ruoyi/basic/mapper/StandardTreeMapper.java b/basic-server/src/main/java/com/ruoyi/basic/mapper/StandardTreeMapper.java new file mode 100644 index 0000000..4deb5df --- /dev/null +++ b/basic-server/src/main/java/com/ruoyi/basic/mapper/StandardTreeMapper.java @@ -0,0 +1,92 @@ +package com.ruoyi.basic.mapper; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ruoyi.basic.dto.*; +import com.ruoyi.basic.pojo.IfsInventoryQuantity; +import com.ruoyi.basic.pojo.StandardMethodList; +import com.ruoyi.basic.pojo.StandardProductList; +import com.ruoyi.basic.pojo.StandardTree; +import org.apache.ibatis.annotations.Param; + +import java.util.List; + +/** + * @author Administrator + * @description 閽堝琛ㄣ�恠tandard_tree(鏍囧噯鏍�)銆戠殑鏁版嵁搴撴搷浣淢apper + * @createDate 2024-03-01 15:06:44 + * @Entity com.ruoyi.basic.pojo.StandardTree + */ +public interface StandardTreeMapper extends BaseMapper<StandardTree> { + + List<FactoryDto> selectStandardTreeList(); + + List<StandardTree> selectStandardTreeList2(String sampleType); + + StandardProductList selectStandardProductById(Integer id); + + 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<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<FactoryDto> selectStandardTreeListByPartNo(@Param("partNo") String partNo); + + IPage<IfsInventoryQuantity> selectIfsPage(IPage<IfsInventoryQuantity> page, + @Param("ew") QueryWrapper<IfsInventoryQuantity> ew); + + IPage<IfsInventoryQuantityDto> getIfsByStateOne(IPage<IfsInventoryQuantityDto> page, + @Param("ew") QueryWrapper<IfsInventoryQuantityDto> ew); + + + IPage<IfsInventoryQuantityCheckDto> selectIfsInventoryQuantity(Page<IfsInventoryQuantityCheckDto> page, @Param("ew")QueryWrapper<IfsInventoryQuantityCheckDto> ew); + + /** + * 鍘熸潗鎶ユ鏌ヨ鍏ㄩ儴(鍒嗛〉) + * @param page + * @param ew + * @return + */ + IPage<IfsInventoryQuantitySupplierDto> getIfsByOver(Page<IfsInventoryQuantitySupplierDto> page, @Param("ew") QueryWrapper<IfsInventoryQuantitySupplierDto> ew, @Param("beginDeclareDate") String beginDeclareDate, @Param("endDeclareDate")String endDeclareDate); + + /** + * 鍘熸潗鎶ユ鏌ヨ鍏ㄩ儴(鏃犲垎椤�) + * @param ew + * @return + */ + List<IfsInventoryQuantitySupplierDto> getIfsByOverList(@Param("ew") QueryWrapper<IfsInventoryQuantitySupplierDto> ew, @Param("beginDeclareDate") String beginDeclareDate, @Param("endDeclareDate")String endDeclareDate); + + /** + * 鍘熸潗鏂欐煡璇㈠搴︽楠� + * @param page + * @param + * @param beginDeclareDate + * @param endDeclareDate + * @return + */ + IPage<IfsInventoryQuantitySupplierDto> getIfsByQuarter(Page<IfsInventoryQuantitySupplierDto> page, @Param("ew") QueryWrapper<IfsInventoryQuantitySupplierDto> ew, @Param("beginDeclareDate") String beginDeclareDate, @Param("endDeclareDate")String endDeclareDate); + +} + + + + -- Gitblit v1.9.3