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

37 lines
1.1 KiB
Java

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