| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | 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.PlanDto; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface PlanService extends IService<Plan> { |
| | | |
| | | List<PlanDto> selectAllPlan(int pageSize, int countSize, Integer state); |
| | | |
| | | boolean delPlan(Integer id); |
| | | |
| | | List<InspectionProductList> selectById(Integer id); |
| | | } |