zhuo
2025-04-17 3baa0061112a555d75c6bc606d5271ec842ac607
inspect-server/src/main/java/com/ruoyi/inspect/mapper/InsUnqualifiedRetestProductMapper.java
@@ -4,6 +4,7 @@
import com.ruoyi.inspect.pojo.InsProduct;
import com.ruoyi.inspect.pojo.InsUnqualifiedRetestProduct;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -20,15 +21,13 @@
     * @param ids
     * @return
     */
    List<InsUnqualifiedRetestProduct> selectRetestProduct(List<Integer> ids);
    List<InsUnqualifiedRetestProduct> selectRetestProduct(@Param("ids") List<Integer> ids);
    // 样品
    List<InsProduct> getInsProductUnqualifiedRetest1(Integer id, String laboratory, String retestTag);
    List<InsProduct> getInsProductUnqualifiedRetest1(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("cableTag") String cableTag, @Param("repetitionTag") String repetitionTag, @Param("retestTag") String retestTag);
    // 电缆配置
    List<InsProduct> getInsProductUnqualifiedRetest5(Integer id, String laboratory, String cableTag, String retestTag);
    // 原材料下单
    List<InsProduct> getInsProductUnqualifiedRetest6(Integer id, String laboratory, String rawMaterialTag, String retestTag);
    List<InsProduct> getInsProductUnqualifiedRetest6(@Param("id") Integer id, @Param("laboratory") String laboratory, @Param("rawMaterialTag") String rawMaterialTag , @Param("retestTag") String retestTag);
}