zss
2023-07-26 f330903e12d38af89d61f16c96856924d241a0f2
inspection-server/src/main/java/com/yuanchu/limslaboratory/mapper/PlanMapper.java
@@ -5,6 +5,7 @@
import com.yuanchu.limslaboratory.pojo.dto.PlanDto;
import java.util.List;
import java.util.Map;
/**
 * <p>
@@ -16,5 +17,9 @@
 */
public interface PlanMapper extends BaseMapper<Plan> {
    List<PlanDto> selectAllPlan(int pageSize, int countSize, Integer state);
    //查询所有检验计划分配
    Map selectAllPlan(int pageSize, int countSize, Integer state);
    //查询成品检验
    List<PlanDto> selectInspection(int pageSize, int countSize, Integer state);
}