de/backend/src/main/java/io/dataease/base/mapper/TestCaseMapper.java
2021-02-20 10:23:37 +08:00

38 lines
1.2 KiB
Java

package io.dataease.base.mapper;
import io.dataease.base.domain.TestCase;
import io.dataease.base.domain.TestCaseExample;
import io.dataease.base.domain.TestCaseWithBLOBs;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface TestCaseMapper {
long countByExample(TestCaseExample example);
int deleteByExample(TestCaseExample example);
int deleteByPrimaryKey(String id);
int insert(TestCaseWithBLOBs record);
int insertSelective(TestCaseWithBLOBs record);
List<TestCaseWithBLOBs> selectByExampleWithBLOBs(TestCaseExample example);
List<TestCase> selectByExample(TestCaseExample example);
TestCaseWithBLOBs selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") TestCaseWithBLOBs record, @Param("example") TestCaseExample example);
int updateByExampleWithBLOBs(@Param("record") TestCaseWithBLOBs record, @Param("example") TestCaseExample example);
int updateByExample(@Param("record") TestCase record, @Param("example") TestCaseExample example);
int updateByPrimaryKeySelective(TestCaseWithBLOBs record);
int updateByPrimaryKeyWithBLOBs(TestCaseWithBLOBs record);
int updateByPrimaryKey(TestCase record);
}