From 36ccc814cb2499757a0cfd5525d5e8d0c2309b64 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期三, 27 十一月 2024 16:02:42 +0800 Subject: [PATCH] 企业微信的消息提醒的信息改成单号样品名+检验下单的模版保存,如果存在同名的情况,将原有的情况覆盖掉,并添加提示框+首页展示添加样品名称 --- inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java b/inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java index 1f4dba0..35cc98d 100644 --- a/inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java +++ b/inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java @@ -1,7 +1,15 @@ package com.yuanchu.mom.mapper; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.yuanchu.mom.dto.ProductResultDto2; import com.yuanchu.mom.pojo.InsProduct; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Param; + +import java.util.List; +import java.util.Map; /** * @author Administrator @@ -11,6 +19,17 @@ */ public interface InsProductMapper extends BaseMapper<InsProduct> { + int selectOrderManDay(Integer orderId); + + Map<String, String> selectUserById(Integer userId); + + List<ProductResultDto2> getProductAndResult(Integer sampleId); + + int updateInspected(@Param("id") Integer id); + + IPage<InsProduct> selectNoProducts(Page page, Integer orderId); + + int selectInsProductCountByOrderId(int sampleId); } -- Gitblit v1.9.3