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