value
2024-06-03 1c683ded6a17523c47d7e1d853736562007d26bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.yuanchu.mom.mapper;
 
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
* @description 针对表【ins_product(检验项目)】的数据库操作Mapper
* @createDate 2024-03-08 09:45:03
* @Entity com.yuanchu.mom.pojo.InsProduct
*/
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);
 
    List<InsProduct> selectFiberInsProduct(List<Integer> ids);
}