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

38 lines
1.4 KiB
Java

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