Fixiaobai
2023-09-05 c9da1b0da1178911e383ddcaebecd1e088fa6004
inspection-server/src/main/java/com/yuanchu/limslaboratory/mapper/InspectionProductMapper.java
@@ -4,6 +4,7 @@
import com.yuanchu.limslaboratory.pojo.InspectionProduct;
import java.util.List;
import java.util.Map;
/**
 * 申请单下物料中的项目(InspectionProduct)表数据库访问层
@@ -13,8 +14,7 @@
 */
public interface InspectionProductMapper extends BaseMapper<InspectionProduct> {
    //根据项目id将已有的检验结论改为null
    void upda(Integer id);
    //根据检验单id查询检验项目的检验结果
    List<Integer> getresult(Integer id);
@@ -27,5 +27,8 @@
    //计算未检验项目数量
    Integer seleCountUnInspro();
    //检验项目,设备,检验开始时间,执行人,检验结束时间
    List<Map<String, Object>> getResultNum();
}