| | |
| | | import com.yuanchu.limslaboratory.pojo.InspectionProductList; |
| | | import com.yuanchu.limslaboratory.pojo.Plan; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.dto.InspectionProductListDto; |
| | | import com.yuanchu.limslaboratory.pojo.dto.PlanDto; |
| | | import com.yuanchu.limslaboratory.pojo.vo.PlanVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @param state |
| | | * @return |
| | | */ |
| | | Map selectAllPlan(int pageSize, int countSize, Integer state); |
| | | List<PlanVo> selectAllPlan(int pageSize, int countSize, Integer state); |
| | | |
| | | /** |
| | | * 根据计划id作废检验计划 |
| | |
| | | */ |
| | | boolean delPlan(Integer id); |
| | | |
| | | /** |
| | | * 根据样品id查询检验计划里面检验项目 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<InspectionProductList> selectProductById(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 给检验计划中的检验项目分配试验员,设备,以及日期 |
| | | * @param inspectionProductList |
| | | */ |
| | | void upPlan(InspectionProductList inspectionProductList); |
| | | void upPlan(InspectionProductListDto inspectionProductListDto); |
| | | |
| | | /** |
| | | * 查询成品检验 |