package io.dataease.base.mapper; import io.dataease.base.domain.TestCaseReviewProject; import io.dataease.base.domain.TestCaseReviewProjectExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface TestCaseReviewProjectMapper { long countByExample(TestCaseReviewProjectExample example); int deleteByExample(TestCaseReviewProjectExample example); int insert(TestCaseReviewProject record); int insertSelective(TestCaseReviewProject record); List selectByExample(TestCaseReviewProjectExample example); int updateByExampleSelective(@Param("record") TestCaseReviewProject record, @Param("example") TestCaseReviewProjectExample example); int updateByExample(@Param("record") TestCaseReviewProject record, @Param("example") TestCaseReviewProjectExample example); }