package com.gkhy.exam.system.mapper; import com.gkhy.exam.system.domain.InternalAuditCheck; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* 内审检查 Mapper 接口 *

* * @author hh * @since 2025-07-10 15:11:50 */ @Mapper public interface InternalAuditCheckMapper extends BaseMapper { List selectInternalAuditCheckList(Integer companyId); }