package com.gkhy.safePlatform.specialWork.service.baseService; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.specialWork.entity.WorkProcessDetectionInfo; import com.gkhy.safePlatform.specialWork.model.query.db.WorkProcessDetectionPageDBQuery; import java.util.List; public interface WorkProcessDetectionInfoService extends IService { void saveWorkProcessDetectionInfo(WorkProcessDetectionInfo detectionEntity); List listWorkDetectionInfoByPage(Page page, WorkProcessDetectionPageDBQuery dbQuery); }