Crunchy
2024-08-03 12ecef99059f411e802c6fbc6f9a641c422b1747
inspect-server/src/main/java/com/yuanchu/mom/mapper/InsProductMapper.java
@@ -1,7 +1,12 @@
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
@@ -11,8 +16,15 @@
*/
public interface InsProductMapper extends BaseMapper<InsProduct> {
    int selectOrderManDay(Integer sampleId);
    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, String laboratory);
}