“djh”
2025-10-30 4e05db79b1d981677b8a2664f252dfccf95ef6ce
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);
}