dataease-dm/backend/src/main/java/io/dataease/base/mapper/TestCaseReviewProjectMapper.java

23 lines
851 B
Java
Raw Normal View History

2021-02-20 10:07:25 +08:00
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<TestCaseReviewProject> selectByExample(TestCaseReviewProjectExample example);
int updateByExampleSelective(@Param("record") TestCaseReviewProject record, @Param("example") TestCaseReviewProjectExample example);
int updateByExample(@Param("record") TestCaseReviewProject record, @Param("example") TestCaseReviewProjectExample example);
}