package com.gkhy.exam.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.exam.common.api.CommonPage; import com.gkhy.exam.common.api.CommonResult; import com.gkhy.exam.system.domain.ProcessInspection; public interface ProcessInspectionService extends IService { CommonPage selectProcessInspectionList(Integer companyId, Integer templateType,Integer itemId); CommonResult insertProcessInspection(ProcessInspection processInspection); CommonResult updateProcessInspection(ProcessInspection processInspection); CommonResult deletedProcessInspection(Integer inspectionId); }