zss
2024-07-30 8dcefe8d8faa04997e75aa0f8c62b6e715d81b98
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);
}