heheng
2025-11-19 735d0737c850cb4385d99fb18f485a5e6c7efbb4
multi-system/src/main/java/com/gkhy/exam/system/mapper/InternalAuditCheckMapper.java
@@ -2,7 +2,9 @@
import com.gkhy.exam.system.domain.InternalAuditCheck;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.system.domain.InternalAuditCheckCatalogue;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -16,6 +18,7 @@
 */
@Mapper
public interface InternalAuditCheckMapper extends BaseMapper<InternalAuditCheck> {
    List<InternalAuditCheck> selectInternalAuditCheckList(Integer companyId);
    List<InternalAuditCheck> selectInternalAuditCheckList(@Param("companyId") Integer companyId);
}