heheng
2025-11-28 03a3edee9ff27fa9bb4b32dcda08e279c7c094c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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<ProcessInspection> {
    CommonPage selectProcessInspectionList(Integer companyId, Integer templateType,Integer itemId);
 
    CommonResult insertProcessInspection(ProcessInspection processInspection);
 
    CommonResult updateProcessInspection(ProcessInspection processInspection);
 
    CommonResult deletedProcessInspection(Integer inspectionId);
}