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);
| }
|
|