XiaoRuby
2023-07-25 f04c1a5a967679b9984926af72be8a3d3f26c2bb
inspection-server/src/main/java/com/yuanchu/limslaboratory/service/PlanService.java
@@ -1,7 +1,11 @@
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>
@@ -13,4 +17,9 @@
 */
public interface PlanService extends IService<Plan> {
    List<PlanDto> selectAllPlan(int pageSize, int countSize, Integer state);
    boolean delPlan(Integer id);
    List<InspectionProductList> selectById(Integer id);
}