zss
2023-08-19 e6ffa9fcebef022be1e8e8162c65f52754f9081e
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(String device, Date beginTime, Date endTime, String user);
}