“djh”
2025-12-03 e32ac074e0cdc07b7551155e2e1c24684857f2b7
multi-system/src/main/java/com/gkhy/exam/system/service/InternalAuditCheckService.java
@@ -7,6 +7,9 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.system.domain.vo.InternalAuditCheckVo;
import java.util.List;
import java.util.Map;
/**
 * <p>
 * 内审检查 服务类
@@ -18,11 +21,15 @@
public interface InternalAuditCheckService extends IService<InternalAuditCheck> {
    CommonPage selectInternalAuditCheckList(Integer companyId);
    CommonResult insertInternalAuditCheck(InternalAuditCheckVo internalAuditCheck);
    CommonResult insertInternalAuditCheck(InternalAuditCheck internalAuditCheck);
    CommonResult updateInternalAuditCheck(InternalAuditCheckVo internalAuditCheck);
    CommonResult updateInternalAuditCheck(InternalAuditCheck internalAuditCheck);
    CommonResult deletedInternalAuditCheck(Integer id);
    CommonResult internalAuditCheckInfo(Integer id);
    CommonResult updateByYearAndDeptId(InternalAuditCheck internalAuditCheck);
    List<InternalAuditCheck> selectByMap(Map<String, Object> stringObjectHashMap);
//    CommonResult internalAuditCheckInfo(Integer id);
}