“zhuo”
2023-08-09 80b2025993331ac057b9a63210be2cb6ba124806
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yuanchu.limslaboratory.mapper;
 
import com.yuanchu.limslaboratory.pojo.vo.PlanVo;
 
import java.util.Date;
import java.util.List;
 
public interface PlanMapper {
    /**
     * 查询检验计划
     * @return
     */
    List<PlanVo> selectAllPlan(Integer deviceId, Date beginTime, Date endTime, Integer userId);
}