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