Fixiaobai
2023-09-08 d2ce4553e18131b9a60d7be53c496f0cbce699ca
1
2
3
4
5
6
7
8
9
10
package com.yuanchu.limslaboratory.mapper;
 
import java.util.List;
import java.util.Map;
 
public interface PlanMapper {
 
    //查询检验计划
    List<Map<String, Object>> selectAllPlan(String code, String beginTime, String endTime,Integer status,Boolean isLookMe,Integer id);
}