package io.dataease.base.mapper; import io.dataease.base.domain.TestPlanLoadCase; import io.dataease.base.domain.TestPlanLoadCaseExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface TestPlanLoadCaseMapper { long countByExample(TestPlanLoadCaseExample example); int deleteByExample(TestPlanLoadCaseExample example); int deleteByPrimaryKey(String id); int insert(TestPlanLoadCase record); int insertSelective(TestPlanLoadCase record); List selectByExample(TestPlanLoadCaseExample example); TestPlanLoadCase selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") TestPlanLoadCase record, @Param("example") TestPlanLoadCaseExample example); int updateByExample(@Param("record") TestPlanLoadCase record, @Param("example") TestPlanLoadCaseExample example); int updateByPrimaryKeySelective(TestPlanLoadCase record); int updateByPrimaryKey(TestPlanLoadCase record); }