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>
|
* 服务类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-07-17
|
*/
|
public interface PlanService extends IService<Plan> {
|
|
List<PlanDto> selectAllPlan(int pageSize, int countSize, Integer state);
|
|
boolean delPlan(Integer id);
|
|
List<InspectionProductList> selectById(Integer id);
|
}
|